Files
bobbycar-boardcomputer-firm…/main/bobbyerrorhandler.h
CommanderRedYT d829c0d5cb Fixed spelling
2022-06-23 20:15:51 +02:00

10 lines
206 B
C++

#pragma once
// 3rdparty lib includes
#include <errorhandlerinterface.h>
struct BobbyErrorHandler : public virtual espgui::ErrorHandlerInterface
{
void errorOccurred(std::string &&error) override;
};