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.
20 lines
417 B
C++
20 lines
417 B
C++
2 weeks ago
|
#include "CFDStructDataManagerBase.h"
|
||
|
|
||
|
CFDStructDataManagerBase::CFDStructDataManagerBase(QObject *parent) : QObject(parent)
|
||
|
{
|
||
|
m_cuiSigsCenter = CUISigsCenter::getInstance();
|
||
|
}
|
||
|
|
||
|
CFDStructDataManagerBase::~CFDStructDataManagerBase()
|
||
|
{
|
||
|
if (m_uiConfig != nullptr) {
|
||
|
delete m_uiConfig;
|
||
|
m_uiConfig = nullptr;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
CUIConfig *CFDStructDataManagerBase::getParamUIConfig()
|
||
|
{
|
||
|
return nullptr;
|
||
|
}
|