blob: e76b3453143e17e49e097cf64ac2cda9e3fc3f41 [file] [log] [blame]
Szymon Dompke94f71c52021-12-10 07:16:33 +01001#pragma once
2
3#include "utils/labeled_tuple.hpp"
4#include "utils/tstring.hpp"
5
6#include <tuple>
7#include <vector>
8
9using SensorsInfo =
10 std::vector<std::pair<sdbusplus::message::object_path, std::string>>;
11
12using LabeledSensorInfo =
13 utils::LabeledTuple<std::tuple<std::string, std::string, std::string>,
14 utils::tstring::Service, utils::tstring::Path,
15 utils::tstring::Metadata>;