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/FITKInterfaceIOHDF5/FITKInterfaceHDF5AdaptorBou...

70 lines
1.9 KiB
C

/**
*
* @file FITKInterfaceHDF5AdaptorBoundaryLocation.h
* @brief HDF5BoundaryLocation
* @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