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/FITK_Interface/FITKInterfaceFlowOF/FITKOFRunControl.h

40 lines
987 B
C

/**********************************************************************
* @file FITKOFRunControl.h
* @brief
* @author liuzhonghua (liuzhonghuaszch@163.com)
* @date 2024-08-31
*********************************************************************/
#ifndef _FITK_OF_RUN_CONTROL__H___
#define _FITK_OF_RUN_CONTROL__H___
#include "FITKInterfaceFlowOFAPI.h"
#include "FITK_Kernel/FITKCore/FITKAbstractNDataObject.h"
namespace Core
{
class FITKParameter;
}
namespace Interface
{
class FITKInterfaceFlowOFAPI FITKOFRunControl : public Core::FITKAbstractNDataObject
{
Q_OBJECT
FITKCLASS(Interface, FITKOFRunControl);
public:
explicit FITKOFRunControl();
virtual ~FITKOFRunControl();
Core::FITKParameter* getTimeControl();
Core::FITKParameter* getOutputControl();
private:
Core::FITKParameter* _timeControl{};
Core::FITKParameter* _outputControl{};
};
}
#endif