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.cpp

29 lines
624 B
C++

#include "FITKOFRunControl.h"
#include "FITK_Kernel/FITKEasyParam/FITKParameter.h"
namespace Interface
{
FITKOFRunControl::FITKOFRunControl()
{
_timeControl = new Core::FITKParameter;
_outputControl = new Core::FITKParameter;
}
FITKOFRunControl::~FITKOFRunControl()
{
if (_timeControl) delete _timeControl;
if (_outputControl) delete _outputControl;
}
Core::FITKParameter* FITKOFRunControl::getTimeControl()
{
return _timeControl;
}
Core::FITKParameter* FITKOFRunControl::getOutputControl()
{
return _outputControl;
}
}