Generic hardware access library
|
00001 #ifndef __ResetBitFactory 00002 #define __ResetBitFactory 00003 00004 #include <string> 00005 #include <list> 00006 00007 #include "hal/AbstractCommandFactory.hh" 00008 #include "hal/ResetBitCommand.hh" 00009 #include "hal/NoSuchItemException.hh" 00010 00011 namespace HAL { 00012 00029 class ResetBitFactory : public AbstractCommandFactory { 00030 public: 00031 virtual ~ResetBitFactory() {}; 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 /* __ResetBitFactory */