24 lines
425 B
C++
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 |