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.
32 lines
623 B
C++
32 lines
623 B
C++
#include "FITKOFInterface.h"
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAbstractCommandRunner.h"
|
|
|
|
namespace FoamDriver
|
|
{
|
|
|
|
FITKOFInterface::FITKOFInterface()
|
|
{
|
|
_commandRunner = new AppFrame::FITKLinuxCommandRunner();
|
|
}
|
|
|
|
FITKOFInterface::~FITKOFInterface()
|
|
{
|
|
if (_commandRunner != nullptr)
|
|
{
|
|
delete _commandRunner;
|
|
_commandRunner = nullptr;
|
|
}
|
|
}
|
|
|
|
void FITKOFInterface::init()
|
|
{
|
|
//初始化 todo
|
|
}
|
|
|
|
QString FITKOFInterface::getComponentName()
|
|
{
|
|
//自定义名称
|
|
return "FITKopenFOAMDriver";
|
|
}
|
|
}
|