mirror of
https://github.com/marketideas/qasm.git
synced 2024-12-28 21:30:37 +00:00
20 lines
343 B
C
20 lines
343 B
C
|
#pragma once
|
||
|
#include <palPoco.h>
|
||
|
#include "pallogger.h"
|
||
|
#include <eventtask.h>
|
||
|
#include <baseapp.h>
|
||
|
#include <httpserver.h>
|
||
|
|
||
|
#define CLASS PAL_APPCLASS
|
||
|
using namespace PAL_NAMESPACE;
|
||
|
|
||
|
class CLASS : public PAL_BASEAPP
|
||
|
{
|
||
|
protected:
|
||
|
virtual int runCommandLineApp(void);
|
||
|
virtual int runServerApp(PAL_EVENTMANAGER *em);
|
||
|
public:
|
||
|
};
|
||
|
|
||
|
#undef CLASS
|