Generic hardware access library
/home/cschwick/hal/generic/include/hal/DefineFactory.hh
Go to the documentation of this file.
00001 #ifndef __DefineFactory
00002 #define __DefineFactory
00003 
00004 #include <string>
00005 #include <list>
00006 
00007 #include "hal/AbstractCommandFactory.hh" 
00008 #include "hal/DefineCommand.hh"
00009 #include "hal/NoSuchItemException.hh"
00010 
00011 namespace HAL {
00012 
00029 class DefineFactory : public AbstractCommandFactory {
00030 public:
00031   virtual ~DefineFactory() {};
00032   SequencerCommand* create( std::list<std::string>& arguments, 
00033                             const AddressTableInterface& addressTable,
00034                             CommandSequence& sequence ) 
00035     throw (SequencerSyntaxError);
00036 };
00037 
00038 } /* namespace HAL */
00039 
00040 #endif /* __DefineFactory */