mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
23 lines
455 B
C++
23 lines
455 B
C++
#ifndef _CtrlLibTest_CtrlLibTest_h
|
|
#define _CtrlLibTest_CtrlLibTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <CtrlLibTest/CtrlLibTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#define IMAGECLASS MyIm
|
|
#define IMAGEFILE <CtrlLibTest/CtrlLibTest.iml>
|
|
#include <Draw/iml_header.h>
|
|
|
|
class CtrlLibTest : public WithCtrlLibTestLayout<TopWindow> {
|
|
public:
|
|
typedef CtrlLibTest CLASSNAME;
|
|
CtrlLibTest();
|
|
};
|
|
|
|
#endif
|
|
|
|
|