Add variableWindow mode.

This commit is contained in:
sunwen
2024-04-03 09:42:35 +08:00
parent 62f50091a4
commit 734458f7d8
3 changed files with 11 additions and 1 deletions

View File

@@ -1,9 +1,11 @@
#include "MatlabCreator.h"
#include "MatlabCreatorPrivate.h"
#include "MatlabCreatorVariableWindowPrivate.h"
MatlabCreator::MatlabCreator(const std::string& aDirectoryPath)
: mPrivate(new MatlabCreatorPrivate(aDirectoryPath))
, mVariableWindowPrivate(new MatlabCreatorVariableWindowPrivate(aDirectoryPath))
{
}
@@ -17,7 +19,10 @@ bool MatlabCreator::createKITMat(const std::string& aOutputPath)
return mPrivate->createKITMat(aOutputPath);
}
bool MatlabCreator::createKITVariableWindowMat(const std::string& aOutputPath)
{
return mVariableWindowPrivate->createKITMat(aOutputPath);
}