Generic hardware access library
|
00001 #ifndef __DeviceIdentifier 00002 #define __DeviceIdentifier 00003 00004 #include <string> 00005 00006 namespace HAL { 00007 00031 class DeviceIdentifier { 00032 public: 00033 virtual std::string printString() const = 0; 00047 virtual ~DeviceIdentifier() {}; 00048 00049 }; 00050 00051 } /* namespace HAL */ 00052 00053 #endif /* __DeviceIdentifier */