blob: edb30c3a478b497fe0d9e1ddd430a574abeb3aa8 [file] [log] [blame]
Patrick Venture5e929092018-06-08 10:55:23 -07001#pragma once
2
3#include <map>
Patrick Venture5e929092018-06-08 10:55:23 -07004#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 Venturefe75b192018-06-08 11:19:43 -070012SensorManager BuildSensors(
Patrick Venture5e929092018-06-08 10:55:23 -070013 const std::map<std::string, struct sensor>& config);
14