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_Component/FITKFlowOFIOHDF5/FITKFlowOFHDF5AdaptorGeomet...

75 lines
2.3 KiB
C

/**********************************************************************
* @file FITKFlowOFHDF5AdaptorGeometryComponent.h
* @brief hdf5
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-19
*********************************************************************/
#ifndef __FITKFLOWOFHDF5ADAPTORGEOMETRYCOMPONENT_R_H__
#define __FITKFLOWOFHDF5ADAPTORGEOMETRYCOMPONENT_R_H__
#include "FITKFlowOFIOHDF5API.h"
#include "FITKFlowOFHDF5AbstractAdaptor.h"
#include "FITK_Kernel/FITKCore/FITKCoreMacros.h"
#include "FITK_Kernel/FITKAdaptor/FITKIOAdaptorFactory.h"
//前置声明
ForwardDeclarNS(Interface, FITKGeoComponentManager)
ForwardDeclarNS(Interface, FITKGeoComponent)
namespace IO
{
/**
* @brief hdf5
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-19
*/
class FITKFLOWOFIOHDF5API FITKFlowOFHDF5AdaptorGeometryComponent : public FITKFlowOFHDF5AbstractAdaptor
{
public:
explicit FITKFlowOFHDF5AdaptorGeometryComponent() = default;
~FITKFlowOFHDF5AdaptorGeometryComponent() = default;
/**
* @brief
* @return
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
QString getAdaptorClass() override;
/**
* @brief
* @return true false
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
bool adaptR() override;
/**
* @brief
* @return true false
* @author fulipeng (fulipengqd@yeah.net)
* @date 2024-05-30
*/
bool adaptW() override;
private:
bool geoComponentW(Interface::FITKGeoComponent* component, H5::Group& h5Group);
bool geoComponentR(Interface::FITKGeoComponent* component, H5::Group& h5Group);
private:
/**
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-09-09
*/
Interface::FITKGeoComponentManager* _geoComponentMgr{};
};
Register2FITKIOAdaptorFactory(HDF5, Interface::FITKGeoComponentManager, FITKFlowOFHDF5AdaptorGeometryComponent)
}
#endif // !1