/* * Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved. * Description: temperature * Author: * Create: 2022-02-15 */ #ifndef TEMP_EXIT_PROMPT #define TEMP_EXIT_PROMPT #include "components/ui_image_view.h" #include "components/ui_label.h" #include "components/ui_scroll_view.h" #include "TempPresenter.h" namespace OHOS { class TempExitPrompt : public UIScrollView { public: TempExitPrompt(); ~TempExitPrompt() override; bool InitExitPrompt(); static TempExitPrompt *GetInstance(); private: bool TempInitImage(void); bool TempInitLabel(void); UIImageView *tempImage[SET_TWO]{nullptr}; UILabel *tempLabel{nullptr}; }; } #endif