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