ultimatepp/bazaar/ProtectClientDemo/ProtectClientDemo.h
micio d1a78c5335 Bazaar/Protect : split hardware encription, client and server codes
git-svn-id: svn://ultimatepp.org/upp/trunk@6171 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-07-06 13:17:40 +00:00

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