|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @file FITKInterfaceHDF5AdaptorBoundaryLocation.h
|
|
|
|
|
* @brief 读写HDF5文件的BoundaryLocation类
|
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
|
|
|
* @date 2024-06-18
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#ifndef _FITKINTERFACEHDF5ADAPTORBOUNDARYLOCATION_H__
|
|
|
|
|
#define _FITKINTERFACEHDF5ADAPTORBOUNDARYLOCATION_H__
|
|
|
|
|
|
|
|
|
|
#include "FITKInterfaceIOHDF5API.h"
|
|
|
|
|
#include "FITKAbstractHDF5Adaptor.h"
|
|
|
|
|
#include "FITK_Kernel/FITKAdaptor/FITKIOAdaptorFactory.h"
|
|
|
|
|
|
|
|
|
|
//前置声明
|
|
|
|
|
ForwardDeclarNS(Interface, FITKBoundaryLocation)
|
|
|
|
|
|
|
|
|
|
namespace IO
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @brief HDF5 BoundaryLocation 读写适配器
|
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
|
|
|
* @date 2024-06-18
|
|
|
|
|
*/
|
|
|
|
|
class FITKINTERFACEHDF5IOAPI FITKInterfaceHDF5AdaptorBoundaryLocation : public FITKAbstractHDF5Adaptor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit FITKInterfaceHDF5AdaptorBoundaryLocation() = default;
|
|
|
|
|
virtual ~FITKInterfaceHDF5AdaptorBoundaryLocation() = default;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief 获取适配器数据类型名
|
|
|
|
|
* @return 适配器数据类型名
|
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
|
|
|
* @date 2024-05-31
|
|
|
|
|
*/
|
|
|
|
|
QString getAdaptorClass() override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief 适配器读取
|
|
|
|
|
* @return 状态 true成功, false失败
|
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
|
|
|
* @date 2024-05-31
|
|
|
|
|
*/
|
|
|
|
|
bool adaptR() override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief 适配器写出
|
|
|
|
|
* @return 状态 true成功, false失败
|
|
|
|
|
* @author fulipeng (fulipengqd@yeah.net)
|
|
|
|
|
* @date 2024-05-31
|
|
|
|
|
*/
|
|
|
|
|
bool adaptW() override;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
virtual bool readBoundaryLocation(Interface::FITKBoundaryLocation* bc, H5::Group& h5Group);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool writeBoundaryLocation(Interface::FITKBoundaryLocation* bc, H5::Group& h5Group);
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Register2FITKIOAdaptorFactory(HDF5, Interface::FITKBoundaryLocation, FITKInterfaceHDF5AdaptorBoundaryLocation)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|