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.
18 lines
346 B
C++
18 lines
346 B
C++
#include "FITKAbstractMeshProcessor.h"
|
|
|
|
Interface::FITKAbstractMeshProcessor::~FITKAbstractMeshProcessor()
|
|
{
|
|
//纯虚函数
|
|
}
|
|
|
|
void Interface::FITKAbstractMeshProcessor::setArgs(const QStringList & args)
|
|
{
|
|
_args = args;
|
|
}
|
|
|
|
void Interface::FITKAbstractMeshProcessor::start(QStringList info /*= QStringList()*/)
|
|
{
|
|
//纯虚函数
|
|
}
|
|
|