mirror of
https://github.com/marketideas/qasm.git
synced 2025-01-27 19:39:40 +00:00
20 lines
271 B
C++
20 lines
271 B
C++
#pragma once
|
|
#include <palPoco.h>
|
|
|
|
class QUtils
|
|
{
|
|
protected:
|
|
Poco::Util::Application &appInstance;
|
|
public:
|
|
QUtils();
|
|
bool isMerlin32(void);
|
|
bool isMerlin816(void);
|
|
string getAppPath();
|
|
};
|
|
|
|
#ifdef UTIL_CPP
|
|
QUtils *utils=NULL;
|
|
#else
|
|
extern QUtils *utils;
|
|
#endif
|