mcu_hi3321_watch/tjd/ui/app/low_power/TjdUiAppLowPowerModel.h
2025-05-26 20:15:20 +08:00

24 lines
425 B
C++

#ifndef TJD_UI_APP_LOW_POWER_MODEL_H
#define TJD_UI_APP_LOW_POWER_MODEL_H
#include "cmsis_os2.h"
namespace TJD {
class TjdUiAppLowPowerModel
{
public:
static TjdUiAppLowPowerModel &GetInstance(void)
{
static TjdUiAppLowPowerModel instance;
return instance;
};
void MsgShakeEvent(void);
private:
TjdUiAppLowPowerModel() {};
~TjdUiAppLowPowerModel() {};
};
} // namespace TJD
#endif