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.
33 lines
927 B
C++
33 lines
927 B
C++
#ifndef CFDSTRUCTDATAMANAGERBASE_H
|
|
#define CFDSTRUCTDATAMANAGERBASE_H
|
|
|
|
#include <QObject>
|
|
#include "CFDStructDataManager_global.h"
|
|
#include "CUIProperty/CUISigsCenter.h"
|
|
#include "CUIProperty/CUIConfig.h"
|
|
#include "CUIProperty/CUIDefine.h"
|
|
#include "rapidjson/document.h"
|
|
#include "rapidjson/writer.h"
|
|
#include "rapidjson/stringbuffer.h"
|
|
|
|
|
|
class CFDSTRUCTDATAMANAGER_EXPORT CFDStructDataManagerBase : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CFDStructDataManagerBase(QObject *parent = nullptr);
|
|
~CFDStructDataManagerBase();
|
|
// 获取参数界面的配置
|
|
virtual CUIConfig* getParamUIConfig();
|
|
virtual void saveDataToDom(rapidjson::Document &dom);
|
|
signals:
|
|
|
|
protected:
|
|
CUIConfig* m_uiConfig = nullptr;
|
|
CUISigsCenter* m_cuiSigsCenter = nullptr;
|
|
protected:
|
|
virtual void jsonAdd(rapidjson::Document& document, QVariant value, QVector<QVariant> path);
|
|
};
|
|
|
|
#endif // CFDSTRUCTDATAMANAGERBASE_H
|