Generic hardware access library
|
00001 #include "hal/LabelCommand.hh" 00002 00003 00004 HAL::LabelCommand::LabelCommand( std::string labelName, 00005 HAL::CommandSequence& sequence ) 00006 : sequence(sequence) { 00007 this->labelName = labelName; 00008 sequence.addLabel( labelName ); 00009 } 00010 00011 void HAL::LabelCommand::excecute( const HAL::HardwareDeviceInterface& device ) const 00012 throw() { 00013 /* nothing to do during command excecution */ 00014 } 00015