mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
17 lines
264 B
C++
17 lines
264 B
C++
#ifndef _QuickTest_QuickTest_h
|
|
#define _QuickTest_QuickTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
class QuickTest : public TopWindow {
|
|
public:
|
|
virtual void Paint(Draw& w);
|
|
|
|
typedef QuickTest CLASSNAME;
|
|
QuickTest();
|
|
};
|
|
|
|
#endif
|
|
|