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/FITKMeshGenOF/FITKOFMeshProcessor.h

48 lines
1.2 KiB
C

/**
*
* @file FITKOFMeshProcessor.h
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*
*/
#ifndef __FITK_ABSTRACTMESH_OP_PROCESSOR__H___
#define __FITK_ABSTRACTMESH_OP_PROCESSOR__H___
#include "FITK_Interface/FITKInterfaceMeshGen/FITKAbstractMeshProcessor.h"
namespace OF
{
/**
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
class FITKOFMeshProcessor : public Interface::FITKAbstractMeshProcessor
{
public:
/**
* @brief Construct a new FITKOFMeshProcessor object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
explicit FITKOFMeshProcessor() = default;
/**
* @brief Destroy the FITKOFMeshProcessor object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
virtual ~FITKOFMeshProcessor() = default;
/**
* @brief
* @param[i] info
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
virtual void start(QStringList info = QStringList()) override;
};
}
#endif