GeekTrack/2.Firmware/components/GeekOS/Pages/Launcher/LauncherModel.h

24 lines
269 B
C
Raw Normal View History

2022-09-18 18:40:49 +08:00
#ifndef __LAUNCHER_MODEL_H
#define __LAUNCHER_MODEL_H
#include "lvgl.h"
#include "Common/DataProc/DataProc.h"
namespace Page
{
class LauncherModel
{
public:
void Init();
void Deinit();
int16_t GetUserStep();
private:
Account* account;
};
}
#endif