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/FITKFluidVTKGraphAdaptor/FITKFluidVTKViewAdaptorRegi...

57 lines
1.8 KiB
C++

/*****************************************************************//**
* @file FITKFluidVTKViewAdaptorRegionMesh.h
* @brief Adaptor for previewing 'region mesh' data.
*
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-25
*********************************************************************/
#ifndef __FITKFLUIDVTKVIEWADAPTORREGIONMESH_H__
#define __FITKFLUIDVTKVIEWADAPTORREGIONMESH_H__
#include "FITKFluidVTKViewAdaptorBase.h"
#include "FITKFluidVTKGraphAdaptorAPI.h"
namespace Exchange
{
/**
* @brief Graph object data adaptor for previewing 'region mesh' data.
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-25
*/
class FITKFLUIDGRAPHADAPTORAPI FITKFluidVTKViewAdaptorRegionMesh : public FITKFluidVTKViewAdaptorBase
{
// Regist
FITKCLASS(Exchange, FITKFluidVTKViewAdaptorRegionMesh);
public:
/**
* @brief Constructor.
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-25
*/
explicit FITKFluidVTKViewAdaptorRegionMesh() = default;
/**
* @brief Destructor.
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-25
*/
~FITKFluidVTKViewAdaptorRegionMesh() = default;
/**
* @brief Execute the data exchange.[override]
* @return Is OK
* @author ChengHaotian (yeguangbaozi@foxmail.com)
* @date 2024-07-25
*/
bool update() override;
};
// Regist region mesh adaptor
Register2FITKViewAdaptorFactory(RegionMeshPreview, Interface::FITKAbstractRegionMeshSize, FITKFluidVTKViewAdaptorRegionMesh);
} // namespace Exchange
#endif // __FITKFLUIDVTKVIEWADAPTORREGIONMESH_H__