#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(const std::string& aOutputPath) { return mPrivate->createKITMat(aOutputPath); }