mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
32 lines
586 B
C++
32 lines
586 B
C++
#ifndef _ProtectClientDemo_ProtectClientDemo_h
|
|
#define _ProtectClientDemo_ProtectClientDemo_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#include <ProtectClient/ProtectClient.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <ProtectClientDemo/ProtectClientDemo.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class ProtectClientDemo : public WithProtectClientDemoLayout<TopWindow>
|
|
{
|
|
private:
|
|
ProtectClient client;
|
|
|
|
protected:
|
|
|
|
virtual void onAction(int reason);
|
|
|
|
public:
|
|
typedef ProtectClientDemo CLASSNAME;
|
|
|
|
// constructor
|
|
ProtectClientDemo();
|
|
|
|
// destructor
|
|
~ProtectClientDemo();
|
|
};
|
|
|
|
#endif
|