Generic hardware access library
/home/cschwick/hal/generic/src/common/PrintFactory.cc
Go to the documentation of this file.
00001 #include "hal/PrintFactory.hh"
00002 
00003 HAL::SequencerCommand* HAL::PrintFactory::create( std::list<std::string>& arguments, 
00004                                                   const HAL::AddressTableInterface& addressTable,
00005                                                   HAL::CommandSequence& sequence ) 
00006   throw (HAL::SequencerSyntaxError) {
00007   return new HAL::PrintCommand (arguments, sequence);   
00008 }
00009 
00010