mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
33 lines
509 B
C++
33 lines
509 B
C++
#ifndef _FSMonTest_FSMonTest_h
|
|
#define _FSMonTest_FSMonTest_h
|
|
|
|
#include <FSMon/FSMon.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <FSMonTest/FSMonTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class FSMonTest : public WithFSMonTestLayout<TopWindow>
|
|
{
|
|
private:
|
|
void Log(String const &s);
|
|
|
|
void startCb(void);
|
|
void stopCb(void);
|
|
void quitCb(void);
|
|
|
|
FSMon fsmMon;
|
|
|
|
void monitorCb(void);
|
|
|
|
protected:
|
|
public:
|
|
typedef FSMonTest CLASSNAME;
|
|
|
|
FSMonTest();
|
|
};
|
|
|
|
#endif
|