mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-25 15:28:27 -04:00
15 lines
309 B
C++
15 lines
309 B
C++
#pragma once
|
|
#include <module-gui/gui/widgets/Window.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class TestWindow : public Window
|
|
{
|
|
public:
|
|
TestWindow(const std::string &name);
|
|
void buildInterface() final;
|
|
void destroyInterface() final;
|
|
void rebuild() final;
|
|
};
|
|
} // namespace gui
|