mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
16 lines
180 B
C++
16 lines
180 B
C++
#include "DerivedLayout.h"
|
|
|
|
Base::Base()
|
|
{
|
|
CtrlLayout(*this);
|
|
}
|
|
|
|
Derived::Derived()
|
|
{
|
|
SetLayout_DerivedLayout(*this, true);
|
|
}
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
Derived().Run();
|
|
}
|