mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
25 lines
392 B
C++
25 lines
392 B
C++
#ifndef _SysExecTest_SysExecTest_h
|
|
#define _SysExecTest_SysExecTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <SysExecTest/SysExecTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class SysExecTest : public WithSysExecTestLayout<TopWindow>
|
|
{
|
|
private:
|
|
StatusBar status;
|
|
|
|
void btnCb(int n);
|
|
|
|
public:
|
|
typedef SysExecTest CLASSNAME;
|
|
|
|
SysExecTest();
|
|
};
|
|
|
|
#endif
|
|
|