00001 #ifndef CONFIGURATION_H 00002 #define CONFIGURATION_H 00003 00004 #include <istream> 00005 #include <sensor/sensor_base/sensor.h> 00006 00007 namespace GMapping { 00008 00009 class Configuration{ 00010 public: 00011 virtual ~Configuration(); 00012 virtual SensorMap computeSensorMap() const=0; 00013 }; 00014 00015 }; 00016 #endif 00017