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