InfiniTime/src/displayapp/screens/Error.h

22 lines
405 B
C
Raw Normal View History

2021-08-18 12:23:30 +00:00
#pragma once
#include "displayapp/screens/Screen.h"
2021-08-18 12:23:30 +00:00
#include "BootErrors.h"
#include <lvgl/lvgl.h>
namespace Pinetime {
namespace Applications {
namespace Screens {
class Error : public Screen {
public:
Error(DisplayApp* app, System::BootErrors error);
~Error() override;
void ButtonEventHandler();
private:
lv_obj_t* btnOk;
};
}
}
}