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.
|
|
|
|
#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;
|
|
|
|
|
}
|
|
|
|
|
}
|