qasm/qasm.h

24 lines
444 B
C
Raw Normal View History

2019-11-11 15:56:03 -08:00
#pragma once
2019-11-14 17:08:11 -08:00
#include "inttypes.h"
#include "palPoco.h"
2019-11-11 15:56:03 -08:00
#include "pallogger.h"
#include "eventtask.h"
#include "baseapp.h"
#include "httpserver.h"
2019-11-11 15:56:03 -08:00
#define CLASS PAL_APPCLASS
using namespace PAL_NAMESPACE;
class CLASS : public PAL_BASEAPP
{
protected:
2019-11-15 05:31:42 -08:00
void showerror(int ecode,std::string fname);
2019-11-11 15:56:03 -08:00
virtual int runCommandLineApp(void);
virtual int runServerApp(PAL_EVENTMANAGER *em);
2019-11-15 05:31:42 -08:00
virtual void displayVersion();
2019-11-11 15:56:03 -08:00
public:
};
#undef CLASS