Files
bobbycar-boardcomputer-firm…/main/bobbyerrorhandler.h

10 lines
206 B
C
Raw Normal View History

#pragma once
// 3rdparty lib includes
#include <errorhandlerinterface.h>
struct BobbyErrorHandler : public virtual espgui::ErrorHandlerInterface
{
2022-06-15 10:55:35 +02:00
void errorOccurred(std::string &&error) override;
};