mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
19 lines
365 B
C++
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
|