29 lines
663 B
C++
29 lines
663 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
|
|
* Description: temperature
|
|
* Author:
|
|
* Create: 2022-02-15
|
|
*/
|
|
|
|
#ifndef TEMP_STUDY_ABOUT
|
|
#define TEMP_STUDY_ABOUT
|
|
|
|
#include "components/ui_label.h"
|
|
#include "components/ui_scroll_view.h"
|
|
#include "TempPresenter.h"
|
|
|
|
namespace OHOS {
|
|
class TempStudyAbout : public UIScrollView {
|
|
public:
|
|
TempStudyAbout();
|
|
~TempStudyAbout() override;
|
|
bool InitStudyAbout();
|
|
static TempStudyAbout *GetInstance();
|
|
void RefreshStudy(void);
|
|
private:
|
|
bool SetBasicLabel(void);
|
|
bool SetAppendLabel(void);
|
|
UILabel *tempLabel[SET_FIVE]{nullptr};
|
|
};
|
|
}
|
|
#endif |