You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
443 B
C++
21 lines
443 B
C++
#ifndef QTADPOLEGLOBALDATA_H
|
|
#define QTADPOLEGLOBALDATA_H
|
|
|
|
#include "baseStruct.h"
|
|
#include "QZkJsonParser.h"
|
|
|
|
class QTadpoleGlobalData : public TP_GLOBAL_DATA
|
|
{
|
|
public:
|
|
QTadpoleGlobalData(const char* szExePath, const char* szDllPath = NULL);
|
|
virtual ~QTadpoleGlobalData();
|
|
private:
|
|
// bool json2CoreSetting(QJsonObject& jsonObj);
|
|
public:
|
|
//tagTP_CORE_SETTING m_coreSetting;
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // QTADPOLEGLOBALDATA_H
|