You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FITK_Interface/FITKInterfaceIO/FITKAbstractHDF5Writer.cpp

19 lines
354 B
C++

#include "FITKAbstractHDF5Writer.h"
#include <iomanip>
#include "H5Cpp.h"
//命名空间
namespace IO
{
void FITKAbstractHDF5Writer::setH5Root(H5::H5File* h5File)
{
//设置文件指针
_h5File = h5File;
}
void FITKAbstractHDF5Writer::setVersion(double v)
{
//设置版本号
_version = v;
}
}