ultimatepp/reference/DerivedLayout/main.cpp
cxl 50f07a3aad reference: DerivedLayout example
git-svn-id: svn://ultimatepp.org/upp/trunk@4615 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-02-24 17:43:33 +00:00

16 lines
180 B
C++

#include "DerivedLayout.h"
Base::Base()
{
CtrlLayout(*this);
}
Derived::Derived()
{
SetLayout_DerivedLayout(*this, true);
}
GUI_APP_MAIN
{
Derived().Run();
}