29 lines
369 B
C++
29 lines
369 B
C++
#include "BaseTransform.h"
|
|
|
|
BaseTransform::BaseTransform()
|
|
{
|
|
}
|
|
|
|
BaseTransform::~BaseTransform()
|
|
{
|
|
}
|
|
|
|
//bool BaseTransform::openFile(QString path)
|
|
//{
|
|
// return true;
|
|
//}
|
|
//
|
|
//void BaseTransform::closeFile(QString path)
|
|
//{
|
|
//
|
|
//}
|
|
//
|
|
//bool BaseTransform::importData(QString& errMsg)
|
|
//{
|
|
// return true;
|
|
//}
|
|
//
|
|
//bool BaseTransform::exportData()
|
|
//{
|
|
// return true;
|
|
//}
|