mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-14 11:35:30 -04:00
This is not the best fix, as it most probably should be written differently in the first place
28 lines
803 B
C++
28 lines
803 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <application-settings/windows/BaseSettingsWindow.hpp>
|
|
|
|
namespace app::settingsInterface
|
|
{
|
|
class SimParams;
|
|
}; // namespace app::settingsInterface
|
|
|
|
namespace gui
|
|
{
|
|
class SimCardsWindow : public BaseSettingsWindow
|
|
{
|
|
private:
|
|
auto buildOptionsList() -> std::list<Option> override;
|
|
app::settingsInterface::SimParams *simParams;
|
|
|
|
public:
|
|
SimCardsWindow(app::ApplicationCommon *app, app::settingsInterface::SimParams *simParams);
|
|
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
OptionWindowDestroyer rai_destroyer = OptionWindowDestroyer(*this);
|
|
};
|
|
} // namespace gui
|