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