mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-18 12:04:03 -04:00
14 lines
364 B
C++
14 lines
364 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 <module-apps/apps-common/windows/AppWindow.hpp>
|
|
|
|
class TestWindow : public gui::AppWindow
|
|
{
|
|
public:
|
|
explicit TestWindow(const std::string &name) : gui::AppWindow(nullptr, name)
|
|
{}
|
|
};
|