Generic hardware access library
|
00001 #ifndef __PCIAddressTableASCIIReader 00002 #define __PCIAddressTableASCIIReader 00003 00004 #include <string> 00005 00006 #include "hal/NoSuchFileException.hh" 00007 #include "hal/IllegalValueException.hh" 00008 #include "hal/AddressTableReader.hh" 00009 #include "hal/PCIHardwareAddress.hh" 00010 #include "hal/AddressSpace.hh" 00011 00012 namespace HAL { 00013 00065 class PCIAddressTableASCIIReader : public AddressTableReader { 00066 public : 00067 PCIAddressTableASCIIReader( std::string fileName ) throw (HAL::NoSuchFileException, 00068 HAL::IllegalValueException); 00069 }; 00070 00071 } /* namespace HAL */ 00072 00073 #endif /* __PCIAddressTableASCIIReader */