73 lines
1.4 KiB
C++
73 lines
1.4 KiB
C++
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description:
|
|
*
|
|
* Author: wuchangxin
|
|
*
|
|
* Create: 2024-8-24
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef TJD_UI_APP_TIMER_MODEL_H
|
|
#define TJD_UI_APP_TIMER_MODEL_H
|
|
|
|
#include "alipay_feature.h"
|
|
#include "cmsis_os2.h"
|
|
#include <string>
|
|
|
|
namespace TJD {
|
|
|
|
class TjdUiAppTimerModel
|
|
{
|
|
public:
|
|
TjdUiAppTimerModel();
|
|
~TjdUiAppTimerModel() {};
|
|
static TjdUiAppTimerModel &GetInstance(void)
|
|
{
|
|
static TjdUiAppTimerModel instance;
|
|
return instance;
|
|
};
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
} // namespace TJD
|
|
|
|
#endif/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description:
|
|
*
|
|
* Author: wuchangxin
|
|
*
|
|
* Create: 2024-8-24
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef TJD_UI_APP_TIMER_MODEL_H
|
|
#define TJD_UI_APP_TIMER_MODEL_H
|
|
|
|
#include "alipay_feature.h"
|
|
#include "cmsis_os2.h"
|
|
#include <string>
|
|
|
|
namespace TJD {
|
|
|
|
class TjdUiAppTimerModel
|
|
{
|
|
public:
|
|
TjdUiAppTimerModel();
|
|
~TjdUiAppTimerModel() {};
|
|
static TjdUiAppTimerModel &GetInstance(void)
|
|
{
|
|
static TjdUiAppTimerModel instance;
|
|
return instance;
|
|
};
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
} // namespace TJD
|
|
|
|
#endif |