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

38 lines
777 B
C

/**
* @file OpersGUIInterface.h
* @brief GUI
* @author YanZhiHui (chanyuantiandao@126.com)
* @date 2024-03-26
*/
#ifndef _OperatorsGUIInterface_H_
#define _OperatorsGUIInterface_H_
#include "OperatorsGUIAPI.h"
#include "FITK_Kernel/FITKAppFramework/FITKComponentInterface.h"
namespace OperGUI
{
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