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/FITKOFMesherDriver.h

81 lines
2.2 KiB
C

/**
*
* @file FITKOFMesherDriver.h
* @brief OpenFOAM
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*
*/
#ifndef __FITK_MESHER_DRIVER_OF_H___
#define __FITK_MESHER_DRIVER_OF_H___
#include "FITK_Interface/FITKInterfaceMeshGen/FITKAbstractMesherDriver.h"
namespace OF
{
/**
* @brief OpenFOAM
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
class FITKOFMesherDriver : public Interface::FITKAbstractMesherDriver
{
Q_OBJECT
public:
/**
* @brief Construct a new FITKOFMesherDriver object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
explicit FITKOFMesherDriver() = default;
/**
* @brief Destroy the FITKOFMesherDriver object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
virtual ~FITKOFMesherDriver() = default;
/**
* @brief
* @param[i] info
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
virtual void startMesher(QStringList info = QStringList()) override;
/**
* @brief
* @param[i] info
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-07-18
*/
virtual void stopMesher(QStringList info = QStringList()) override;
public slots:
/**
* @brief blockMesh
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-08-28
*/
void blockMeshSlot();
/**
* @brief snappyHexMesh
* @return void
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-08-28
*/
void snappyHexMeshSlot();
/**
* @brief createPatch
* @return void
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-08-28
*/
void createPatchSlot();
protected:
private:
};
}
#endif