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/FITKInterfaceMeshGen/FITKAbstractGeometryMeshSiz...

48 lines
1.3 KiB
C

/**
* @file FITKAbstractGeometryMeshSizeGenerator.h
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-07-23
*/
#ifndef _FITKABSTRACT_GEOMETRY_MESH_SIZE_GENERATOR_H___
#define _FITKABSTRACT_GEOMETRY_MESH_SIZE_GENERATOR_H___
#include "FITKInterfaceMeshGenAPI.h"
#include "FITKGeometryMeshSize.h"
namespace Interface
{
/**
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-07-23
*/
class FITKInterfaceMeshGenAPI FITKAbstractGeometryMeshSizeGenerator
{
public:
/**
* @brief Construct a new FITKAbstractGeometryMeshSize object
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-07-23
*/
explicit FITKAbstractGeometryMeshSizeGenerator() = default;
/**
* @brief Destroy the FITKAbstractGeometryMeshSize object
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-07-23
*/
virtual ~FITKAbstractGeometryMeshSizeGenerator() = 0;
/**
* @brief
* @return FITKGeometryMeshSize*
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-07-23
*/
virtual FITKGeometryMeshSize* createGeometryMeshSize();
};
}
#endif