Implemented error handler in ChangeValueDisplays

This commit is contained in:
2021-12-29 21:53:47 +01:00
parent 855dbca1ca
commit 4b9a36f507
39 changed files with 336 additions and 418 deletions

9
main/bobbyerrorhandler.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
// 3rdparty lib includes
#include <errorhandlerinterface.h>
struct BobbyErrorHandler : public virtual espgui::ErrorHandlerInterface
{
void errorOccured(std::string &&error) override;
};