mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
20 lines
330 B
C++
20 lines
330 B
C++
#ifndef _UppTest_UppTest_h
|
|
#define _UppTest_UppTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <UppTest/UppTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class UppTest : public WithUppTestLayout<TopWindow> {
|
|
public:
|
|
typedef UppTest CLASSNAME;
|
|
UppTest();
|
|
void Paint(Draw&);
|
|
virtual ~UppTest();
|
|
};
|
|
|
|
#endif
|
|
|