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/OperatorsGUI/OpersGUIInterface.h

38 lines
773 B
C

/**
* @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