mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-30 17:01:54 -05:00
19 lines
411 B
C++
19 lines
411 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <OptionWindow.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class AppsWindow : public OptionWindow
|
|
{
|
|
public:
|
|
explicit AppsWindow(app::ApplicationCommon *app);
|
|
|
|
private:
|
|
std::list<Option> appsAndToolsOptionsList();
|
|
};
|
|
} // namespace gui
|