mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
23 lines
445 B
C++
23 lines
445 B
C++
#ifndef _TestApp_TestApp_h
|
|
#define _TestApp_TestApp_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
//#include <GridCtrl/GridCtrl.h>
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <TestApp/TestApp.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class TestApp : public WithTestAppLayout<TopWindow> {
|
|
public:
|
|
typedef TestApp CLASSNAME;
|
|
EditString editstring;
|
|
Button b1, b2;
|
|
// void Remove() {grid.DoRemove();}
|
|
void sigBar(Bar& bar);
|
|
TestApp();
|
|
};
|
|
|
|
#endif
|