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.
|
|
|
|
/**********************************************************************
|
|
|
|
|
* @file FITKOFDynamicMesh.h
|
|
|
|
|
* @brief 动态网格配置接口
|
|
|
|
|
* @author liuzhonghua (liuzhonghuaszch@163.com)
|
|
|
|
|
* @date 2024-09-04
|
|
|
|
|
*********************************************************************/
|
|
|
|
|
#ifndef _FITK_OF_DYNAMICMESH__H___
|
|
|
|
|
#define _FITK_OF_DYNAMICMESH__H___
|
|
|
|
|
|
|
|
|
|
#include "FITKInterfaceFlowOFAPI.h"
|
|
|
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractNDataObject.h"
|
|
|
|
|
|
|
|
|
|
namespace Core
|
|
|
|
|
{
|
|
|
|
|
class FITKParameter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Interface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class FITKInterfaceFlowOFAPI FITKOFDynamicMesh : public Core::FITKAbstractNDataObject
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit FITKOFDynamicMesh();
|
|
|
|
|
virtual ~FITKOFDynamicMesh();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|