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.
|
|
|
#ifndef CFDSTRUCTOPERATORSMODELSOLVERPROPERTY_H
|
|
|
|
#define CFDSTRUCTOPERATORSMODELSOLVERPROPERTY_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "CFDStructMain/CFDStructDefine.h"
|
|
|
|
#include "CFDStructOperatorsModelAPI.h"
|
|
|
|
|
|
|
|
class CFDStructOperatorsModelAPI CFDStructOperatorsModelSolverProperty : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit CFDStructOperatorsModelSolverProperty(QObject *parent = nullptr);
|
|
|
|
static CFDStructOperatorsModelSolverProperty* getInstance();
|
|
|
|
|
|
|
|
void CFDStructOperatorsModeSolverSaveData();
|
|
|
|
private:
|
|
|
|
static CFDStructOperatorsModelSolverProperty* m_instance;
|
|
|
|
SolutionAnalysisModuleProperty m_module = SolutionAnalysisModuleProperty::UNKNOW;
|
|
|
|
signals:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CFDSTRUCTOPERATORSMODELSOLVERPROPERTY_H
|