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