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.
23 lines
677 B
C
23 lines
677 B
C
2 weeks ago
|
#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();
|
||
|
|
||
|
private:
|
||
|
static CFDStructOperatorsModelSolverProperty* m_instance;
|
||
|
SolutionAnalysisModuleProperty m_module = SolutionAnalysisModuleProperty::UNKNOW;
|
||
|
signals:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CFDSTRUCTOPERATORSMODELSOLVERPROPERTY_H
|