mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
14 lines
134 B
C++
14 lines
134 B
C++
#include "TestUpp.h"
|
|
|
|
|
|
|
|
TestUpp::TestUpp()
|
|
{
|
|
CtrlLayout(*this, "Window title");
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TestUpp().Run();
|
|
}
|
|
|