/* * Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved. * Description: RebootDevice View * Create: 2022-04-28 */ #ifndef REBOOTDEVICE_VIEW_H #define REBOOTDEVICE_VIEW_H #include "View.h" #include "components/ui_view_group.h" #include "components/ui_label.h" #include "components/ui_button.h" namespace OHOS { class RebootDeviceView { public: RebootDeviceView(); ~RebootDeviceView(); static RebootDeviceView *GetInstance(); UIViewGroup *InitShowUpView(void); private: bool ShowUpRebootDeviceView(void); UILabel *rebootDeviceLabel{nullptr}; UIButton *rebootDeviceButton{nullptr}; UIViewGroup *group{nullptr}; }; } // namespace OHOS #endif // REBOOTDEVICE_VIEW_H