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 OperatorsBoundaryConditions.h
|
|
|
|
|
* @brief 网格边界操作器
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#ifndef _OperatorsBoundaryConditions_H
|
|
|
|
|
#define _OperatorsBoundaryConditions_H
|
|
|
|
|
|
|
|
|
|
#include "OperManagerBase.h"
|
|
|
|
|
|
|
|
|
|
namespace ModelOper
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @brief 网格边界操作器
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*/
|
|
|
|
|
class OperatorsBoundaryConditions :public OperManagerBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT;
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief Construct a new Operators Boundary object
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*/
|
|
|
|
|
OperatorsBoundaryConditions();
|
|
|
|
|
/**
|
|
|
|
|
* @brief Destroy the Operators Boundary object
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*/
|
|
|
|
|
~OperatorsBoundaryConditions();
|
|
|
|
|
/**
|
|
|
|
|
* @brief 执行
|
|
|
|
|
* @return true 成功
|
|
|
|
|
* @return false 失败
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*/
|
|
|
|
|
virtual bool execGUI();
|
|
|
|
|
/**
|
|
|
|
|
* @brief 执行结果处理
|
|
|
|
|
* @return true 成功
|
|
|
|
|
* @return false 失败
|
|
|
|
|
* @author BaGuijun (baguijun@163.com)
|
|
|
|
|
* @date 2024-08-14
|
|
|
|
|
*/
|
|
|
|
|
virtual bool execProfession();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 按钮注册相关操作
|
|
|
|
|
Register2FITKOPeratorRepo(actionBoundaryConditionsCreate, OperatorsBoundaryConditions);
|
|
|
|
|
Register2FITKOPeratorRepo(actionBoundaryConditionsDelete, OperatorsBoundaryConditions);
|
|
|
|
|
Register2FITKOPeratorRepo(actionBoundaryConditionsEdit, OperatorsBoundaryConditions);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|