ultimatepp/bazaar/ProtectClientDemo/ProtectClientDemo.h
micio 331ba759e2 Bazaar/Protect : added Protect Client and Server/Client demo
Work in progress, still missing database connections / registering

git-svn-id: svn://ultimatepp.org/upp/trunk@2764 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-10-10 12:30:49 +00:00

32 lines
580 B
C++

#ifndef _ProtectClientDemo_ProtectClientDemo_h
#define _ProtectClientDemo_ProtectClientDemo_h
#include <CtrlLib/CtrlLib.h>
#include <Protect/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