18 lines
251 B
C++
18 lines
251 B
C++
#ifndef CONFIGURATION_H
|
|
#define CONFIGURATION_H
|
|
|
|
#include <istream>
|
|
#include <sensor/sensor_base/sensor.h>
|
|
|
|
namespace GMapping {
|
|
|
|
class Configuration{
|
|
public:
|
|
virtual ~Configuration();
|
|
virtual SensorMap computeSensorMap() const=0;
|
|
};
|
|
|
|
};
|
|
#endif
|
|
|