ultimatepp/reference/DerivedLayout/DerivedLayout.h
cxl 743650155a reference: DerivedLayout improved
git-svn-id: svn://ultimatepp.org/upp/trunk@4616 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-02-24 18:16:19 +00:00

19 lines
365 B
C++

#ifndef _DerivedLayout_DerivedLayout_h
#define _DerivedLayout_DerivedLayout_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <DerivedLayout/DerivedLayout.lay>
#include <CtrlCore/lay.h>
struct Base : public WithBaseLayout<TopWindow> {
Base();
};
struct Derived : public WithDerivedLayout<Base> {
Derived();
};
#endif