24 lines
395 B
C++
24 lines
395 B
C++
|
|
#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();
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|