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.
AppFlow/CFDStruct/CFDStructDataManager/CFDStructDataManagerBase.h

26 lines
662 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"
class CFDSTRUCTDATAMANAGER_EXPORT CFDStructDataManagerBase : public QObject
{
Q_OBJECT
public:
explicit CFDStructDataManagerBase(QObject *parent = nullptr);
~CFDStructDataManagerBase();
// 获取参数界面的配置
virtual CUIConfig* getParamUIConfig();
signals:
protected:
CUIConfig* m_uiConfig = nullptr;
CUISigsCenter* m_cuiSigsCenter = nullptr;
};
#endif // CFDSTRUCTDATAMANAGERBASE_H