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

24 lines
423 B
C++

#ifndef _OperatorsNew_H
#define _OperatorsNew_H
#include "OperManagerBase.h"
namespace ModelOper
{
class OperatorsNew :public Core::FITKActionOperator
{
Q_OBJECT;
public:
OperatorsNew();
~OperatorsNew();
virtual bool execGUI();
virtual bool execProfession();
};
// 按钮注册相关操作
Register2FITKOPeratorRepo(actionNew, OperatorsNew);
}
#endif