mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
13 lines
223 B
C++
13 lines
223 B
C++
#include <Counter/Counter.h>
|
|
|
|
#define LAYOUTFILE <UscCtrl/main.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
WithMainLayout<TopWindow> x;
|
|
x.counter <<= 10;
|
|
CtrlLayout(x);
|
|
x.Run();
|
|
PromptOK(AsString(~x.counter));
|
|
}
|