mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-01 20:35:42 -04:00
[EGD-3572] Application has an instance of Settings - removed from derived apps [EGD-3572] Application is the owner of Settings handling for its windows/widgets [EGD-3572] Settings header moved to service-db public section
14 lines
345 B
C++
14 lines
345 B
C++
// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <OptionWindow.hpp>
|
|
namespace app
|
|
{
|
|
class Application;
|
|
class SimSetter;
|
|
} // namespace app
|
|
|
|
std::list<gui::Option> simSelectWindow(app::Application *app, app::SimSetter *setter);
|