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/OperatorsInterface/ParaWidgetInterfaceOperator.h

49 lines
1.3 KiB
C

/**
*
* @file ParaWidgetInterfaceOperator.h
* @brief operator
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-01
*
*/
#ifndef _PARAWIDGET_OPERATOR_INTERFACE_H___
#define _PARAWIDGET_OPERATOR_INTERFACE_H___
#include "FITK_Kernel/FITKCore/FITKActionOperator.h"
#include "OperatorsInterfaceAPI.h"
namespace EventOper
{
/**
* @brief widget
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-01
*/
class OperatorsInterfaceAPI ParaWidgetInterfaceOperator : public Core::FITKActionOperator
{
public:
/**
* @brief Construct a new Para Widget Interface Oper object
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-01
*/
ParaWidgetInterfaceOperator();
/**
* @brief Destroy the Para Widget Interface Oper object
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-01
*/
virtual ~ParaWidgetInterfaceOperator();
/**
* @brief
* @param[i] index
* @param[i] value
* @author BaGuijun (baguijun@163.com)
* @date 2024-08-01
*/
virtual void eventProcess(int index, QVariant value = QVariant());
};
}
#endif