mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-24 13:58:00 -05:00
21 lines
509 B
C++
21 lines
509 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <AppWindow.hpp>
|
|
#include <gui/widgets/Icon.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class FactoryResetInProgressWindow : public AppWindow
|
|
{
|
|
private:
|
|
Icon *infoIcon = nullptr;
|
|
|
|
public:
|
|
explicit FactoryResetInProgressWindow(app::ApplicationCommon *app);
|
|
void buildInterface() override;
|
|
};
|
|
} /* namespace gui */
|