mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
14 lines
173 B
C++
14 lines
173 B
C++
#include "myProblem.h"
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
TopWindow a;
|
|
Splitter b;
|
|
WithmyProblemLayout<ParentCtrl> c;
|
|
CtrlLayout(c);
|
|
LineEdit d;
|
|
b.Horz(d, c);
|
|
a.Add(b);
|
|
a.Run();
|
|
}
|
|
|