blob: 2849c71ff56011db7c90c9279c89cc56c2fbd345 [file] [log] [blame]
Patrick Venture5e929092018-06-08 10:55:23 -07001#pragma once
2
3#include <map>
4#include <memory>
5#include <string>
6
7#include "sensors/manager.hpp"
8#include "sensors/sensor.hpp"
9
10/**
11 * Build the sensors and associate them with a SensorManager.
12 */
13std::shared_ptr<SensorManager> BuildSensors(
14 const std::map<std::string, struct sensor>& config);
15