Generic hardware access library
|
00001 #ifndef __GotoFactory 00002 #define __GotoFactory 00003 00004 #include <string> 00005 #include <list> 00006 00007 #include "hal/AbstractCommandFactory.hh" 00008 #include "hal/GotoCommand.hh" 00009 #include "hal/NoSuchItemException.hh" 00010 00011 namespace HAL { 00012 00028 class GotoFactory : public AbstractCommandFactory { 00029 public: 00030 virtual ~GotoFactory() {}; 00031 SequencerCommand* create( std::list<std::string>& arguments, 00032 const AddressTableInterface& addressTable, 00033 CommandSequence& sequence ) 00034 throw (SequencerSyntaxError); 00035 }; 00036 00037 } /* namespace HAL */ 00038 00039 #endif /* __GotoFactory */