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/OperatorsModel/OperatorsOperCondition.h

55 lines
1.5 KiB
C

/**********************************************************************
* @file OperatorsOperCondition.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*********************************************************************/
#ifndef _OperatorsOperCondition_H
#define _OperatorsOperCondition_H
#include "OperManagerBase.h"
namespace ModelOper
{
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*/
class OperatorsOperCondition :public OperManagerBase
{
Q_OBJECT;
public:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*/
OperatorsOperCondition();
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*/
~OperatorsOperCondition();
/**
* @brief
* @return bool
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*/
virtual bool execGUI();
/**
* @brief
* @return bool
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-05
*/
virtual bool execProfession();
};
// 按钮注册相关操作
Register2FITKOPeratorRepo(actionOperConditionEdit, OperatorsOperCondition);
}
#endif