Add variableWindow mode.
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
#include "MatlabCreator.h"
|
#include "MatlabCreator.h"
|
||||||
|
|
||||||
#include "MatlabCreatorPrivate.h"
|
#include "MatlabCreatorPrivate.h"
|
||||||
|
#include "MatlabCreatorVariableWindowPrivate.h"
|
||||||
|
|
||||||
MatlabCreator::MatlabCreator(const std::string& aDirectoryPath)
|
MatlabCreator::MatlabCreator(const std::string& aDirectoryPath)
|
||||||
: mPrivate(new MatlabCreatorPrivate(aDirectoryPath))
|
: mPrivate(new MatlabCreatorPrivate(aDirectoryPath))
|
||||||
|
, mVariableWindowPrivate(new MatlabCreatorVariableWindowPrivate(aDirectoryPath))
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -17,7 +19,10 @@ bool MatlabCreator::createKITMat(const std::string& aOutputPath)
|
|||||||
return mPrivate->createKITMat(aOutputPath);
|
return mPrivate->createKITMat(aOutputPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool MatlabCreator::createKITVariableWindowMat(const std::string& aOutputPath)
|
||||||
|
{
|
||||||
|
return mVariableWindowPrivate->createKITMat(aOutputPath);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
#include "parser_global.h"
|
#include "parser_global.h"
|
||||||
|
|
||||||
class MatlabCreatorPrivate;
|
class MatlabCreatorPrivate;
|
||||||
|
class MatlabCreatorVariableWindowPrivate;
|
||||||
|
|
||||||
class PARSERSHARED_EXPORT MatlabCreator
|
class PARSERSHARED_EXPORT MatlabCreator
|
||||||
{
|
{
|
||||||
@@ -13,12 +14,14 @@ public:
|
|||||||
MatlabCreator(const std::string& aDirectoryPath);
|
MatlabCreator(const std::string& aDirectoryPath);
|
||||||
void setDirectoryPath(const std::string& aDirectoryPath);
|
void setDirectoryPath(const std::string& aDirectoryPath);
|
||||||
bool createKITMat(const std::string& aOutputPath);
|
bool createKITMat(const std::string& aOutputPath);
|
||||||
|
bool createKITVariableWindowMat(const std::string& aOutputPath);
|
||||||
|
|
||||||
MatlabCreator(const MatlabCreator& aMatlabCreator) = delete;
|
MatlabCreator(const MatlabCreator& aMatlabCreator) = delete;
|
||||||
MatlabCreator& operator=(const MatlabCreator& aMatlabCreator) = delete;
|
MatlabCreator& operator=(const MatlabCreator& aMatlabCreator) = delete;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
MatlabCreatorPrivate* mPrivate;
|
MatlabCreatorPrivate* mPrivate;
|
||||||
|
MatlabCreatorVariableWindowPrivate* mVariableWindowPrivate;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ SOURCES += \
|
|||||||
Helper/AmplificationHelper.cpp \
|
Helper/AmplificationHelper.cpp \
|
||||||
ShotList/ShotListPrivate.cpp \
|
ShotList/ShotListPrivate.cpp \
|
||||||
MatLab/MatlabCreatorPrivate.cpp \
|
MatLab/MatlabCreatorPrivate.cpp \
|
||||||
|
MatLab/MatlabCreatorVariableWindowPrivate.cpp \
|
||||||
Data/CEMeasuredData.cpp \
|
Data/CEMeasuredData.cpp \
|
||||||
Data/CEData.cpp \
|
Data/CEData.cpp \
|
||||||
Data/MetaData.cpp \
|
Data/MetaData.cpp \
|
||||||
@@ -84,6 +85,7 @@ HEADERS += \
|
|||||||
Helper/AmplificationHelper.h \
|
Helper/AmplificationHelper.h \
|
||||||
ShotList/ShotListPrivate.h \
|
ShotList/ShotListPrivate.h \
|
||||||
MatLab/MatlabCreatorPrivate.h \
|
MatLab/MatlabCreatorPrivate.h \
|
||||||
|
MatLab/MatlabCreatorVariableWindowPrivate.h \
|
||||||
Data/CEMeasuredData.h \
|
Data/CEMeasuredData.h \
|
||||||
Data/CEData.h \
|
Data/CEData.h \
|
||||||
Data/MetaData.h \
|
Data/MetaData.h \
|
||||||
|
|||||||
Reference in New Issue
Block a user