Files
Parser/src/MatLab/MatlabCreator.cpp

24 lines
436 B
C++
Raw Normal View History

2023-03-27 17:35:44 +08:00
#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);
}
2023-04-18 10:37:23 +08:00
bool MatlabCreator::createKITMat(const std::string& aOutputPath)
2023-03-27 17:35:44 +08:00
{
2023-04-18 10:37:23 +08:00
return mPrivate->createKITMat(aOutputPath);
2023-03-27 17:35:44 +08:00
}