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.
24 lines
421 B
C++
24 lines
421 B
C++
#ifndef _OperatorsPost_H
|
|
#define _OperatorsPost_H
|
|
|
|
#include "OperManagerBase.h"
|
|
|
|
namespace ModelOper
|
|
{
|
|
class OperatorsPost :public OperManagerBase
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
OperatorsPost();
|
|
~OperatorsPost();
|
|
|
|
virtual bool execGUI();
|
|
|
|
virtual bool execProfession();
|
|
};
|
|
|
|
// 按钮注册相关操作
|
|
Register2FITKOPeratorRepo(actionPost, OperatorsPost);
|
|
}
|
|
|
|
#endif |