qasm/qasm.h
marketideas 2d5bd87ef8 test
2019-11-14 09:43:27 -08:00

21 lines
389 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:
void showerror(int ecode,std::string fname);
virtual int runCommandLineApp(void);
virtual int runServerApp(PAL_EVENTMANAGER *em);
public:
};
#undef CLASS