Parser Upload.
This commit is contained in:
23
src/MatLab/MatlabCreator.cpp
Normal file
23
src/MatLab/MatlabCreator.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
#include "MatlabCreator.h"
|
||||
|
||||
#include "MatlabCreatorPrivate.h"
|
||||
|
||||
MatlabCreator::MatlabCreator(const std::string& aDirectoryPath)
|
||||
: mPrivate(new MatlabCreatorPrivate(aDirectoryPath))
|
||||
{
|
||||
}
|
||||
|
||||
void MatlabCreator::setDirectoryPath(const std::string& aDirectoryPath)
|
||||
{
|
||||
mPrivate->setDirectoryPath(aDirectoryPath);
|
||||
}
|
||||
|
||||
bool MatlabCreator::createKITMat()
|
||||
{
|
||||
return mPrivate->createKITMat();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user