qasm/qasm.h
2022-01-17 11:21:57 -08:00

31 lines
514 B
C++

#pragma once
#include <inttypes.h>
#include "palPoco.h"
#include "pallogger.h"
#include "eventtask.h"
#include "baseapp.h"
#include "httpserver.h"
#ifndef UNUSED
#define UNUSED (void)
#endif
#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);
#ifdef SERVERAPP
virtual int runServerApp(PAL_EVENTMANAGER *em);
#endif
virtual void displayVersion();
public:
};
#undef CLASS