mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-29 09:18:43 -04:00
18 lines
398 B
C++
18 lines
398 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 "BaseSettingsWindow.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
|
|
class InputLanguageWindow : public BaseSettingsWindow
|
|
{
|
|
public:
|
|
InputLanguageWindow(app::Application *app);
|
|
void buildInterface() override;
|
|
};
|
|
} // namespace gui
|