mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
21 lines
320 B
C++
21 lines
320 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct MyApp : public TopWindow {
|
|
void Serialize(Stream& s) {
|
|
SerializePlacement(s);
|
|
}
|
|
|
|
MyApp() { Sizeable().Zoomable(); }
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
MyApp app;
|
|
app.Open();
|
|
app.Maximize();
|
|
LoadFromFile(app);
|
|
app.Execute();
|
|
StoreToFile(app);
|
|
}
|