mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-30 08:52:01 -05:00
20 lines
516 B
C++
20 lines
516 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 <Dialog.hpp>
|
|
|
|
#include <module-gui/gui/input/InputEvent.hpp>
|
|
|
|
namespace app::onBoarding
|
|
{
|
|
class NoSimSelectedDialogWindow : public gui::Dialog
|
|
{
|
|
public:
|
|
explicit NoSimSelectedDialogWindow(app::ApplicationCommon *app);
|
|
|
|
bool onInput(const gui::InputEvent &inputEvent) override;
|
|
};
|
|
} // namespace app::onBoarding
|