mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-25 15:28:27 -04:00
17 lines
270 B
C++
17 lines
270 B
C++
#include "TestWindow.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
TestWindow::TestWindow(const std::string &name) : Window(name)
|
|
{}
|
|
|
|
void TestWindow::buildInterface()
|
|
{}
|
|
|
|
void TestWindow::destroyInterface()
|
|
{}
|
|
|
|
void TestWindow::rebuild()
|
|
{}
|
|
}; // namespace gui
|