48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description:
|
|
*
|
|
* Author: wuchangxin
|
|
*
|
|
* Create: 2024-7-3
|
|
*--------------------------------------------------------------------------*/
|
|
#ifndef TJDUI_APP_LUCKY_CLOVER_MODEL_H
|
|
#define TJDUI_APP_LUCKY_CLOVER_MODEL_H
|
|
|
|
#include "cstdint"
|
|
#include "list.h"
|
|
#include <string>
|
|
#include "View.h"
|
|
#include "components/ui_label.h"
|
|
#include "components/ui_list.h"
|
|
#include "components/ui_scroll_view.h"
|
|
#include "components/ui_image_view.h"
|
|
#include "ui_swipe_view.h"
|
|
#include "components/ui_slider.h"
|
|
#include "components/ui_chart.h"
|
|
#include "TjdUiAppLuckyCloverPresenter.h"
|
|
|
|
namespace TJD {
|
|
|
|
class TjdUiAppLuckyCloverModel
|
|
{
|
|
public:
|
|
TjdUiAppLuckyCloverModel(){};
|
|
virtual ~TjdUiAppLuckyCloverModel(){};
|
|
static TjdUiAppLuckyCloverModel *GetInstance(void)
|
|
{
|
|
static TjdUiAppLuckyCloverModel instance;
|
|
return &instance;
|
|
}
|
|
|
|
OHOS::UIChartPolyline* uiChart1_ = nullptr;
|
|
void SetRemindFlag(bool flag);
|
|
lucky_clover_t get_lucky_clover_info(void);
|
|
|
|
private:
|
|
};
|
|
|
|
} // namespace TJD
|
|
|
|
#endif |