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 OpersGUIInterface.h
|
|
|
|
|
* @brief GUI操作器的接口调用,无实际作用
|
|
|
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
|
|
|
* @date 2024-03-26
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __OPERSGUIINTERFACE_H__
|
|
|
|
|
#define __OPERSGUIINTERFACE_H__
|
|
|
|
|
|
|
|
|
|
#include "OperatorsGUIAPI.h"
|
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKComponentInterface.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace GUIOper
|
|
|
|
|
{
|
|
|
|
|
class OperatorsGUIAPI OperatorsGUIInterface : public AppFrame::FITKComponentInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit OperatorsGUIInterface() = default;
|
|
|
|
|
virtual ~OperatorsGUIInterface() = default;
|
|
|
|
|
|
|
|
|
|
void init() override;
|
|
|
|
|
/**
|
|
|
|
|
* @brief 获取部件名称
|
|
|
|
|
* @return 部件名称
|
|
|
|
|
* @author YanZhiHui (chanyuantiandao@126.com)
|
|
|
|
|
* @data 2024-03-26
|
|
|
|
|
*/
|
|
|
|
|
virtual QString getComponentName() override;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|