mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
Work in progress, still missing database connections / registering git-svn-id: svn://ultimatepp.org/upp/trunk@2764 f0d560ea-af0d-0410-9eb7-867de7ffcac7
32 lines
580 B
C++
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
|