Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <map> |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 4 | #include <string> |
| 5 | |
| 6 | #include "sensors/manager.hpp" |
| 7 | #include "sensors/sensor.hpp" |
| 8 | |
| 9 | /** |
| 10 | * Build the sensors and associate them with a SensorManager. |
| 11 | */ |
Patrick Venture | fe75b19 | 2018-06-08 11:19:43 -0700 | [diff] [blame] | 12 | SensorManager BuildSensors( |
Patrick Venture | 5e92909 | 2018-06-08 10:55:23 -0700 | [diff] [blame] | 13 | const std::map<std::string, struct sensor>& config); |
| 14 | |