Generic hardware access library
/home/cschwick/hal/generic/include/hal/StaticVMEConfigurationASCIIFileReader.hh
Go to the documentation of this file.
00001 #ifndef __StaticVMEConfigurationASCIIFileReader
00002 #define __StaticVMEConfigurationASCIIFileReader
00003 
00004 #include <string>
00005 
00006 #include "hal/NoSuchFileException.hh"
00007 #include "hal/StaticVMEConfigurationReader.hh"
00008 
00009 namespace HAL {
00010 
00011 class  StaticVMEConfigurationASCIIFileReader : public StaticVMEConfigurationReader {
00012 public:
00013   StaticVMEConfigurationASCIIFileReader(std::string fileName) 
00014     throw (NoSuchFileException);
00015 };
00016 
00017 } /* namespace HAL */
00018 
00019 #endif