blob: 0d5eeb227d4f34ec15f5f2fce912b9167fc9ce1d [file] [log] [blame]
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02001#pragma once
2
3#include <sdbusplus/message/types.hpp>
4
5#include <string>
6#include <tuple>
7#include <vector>
8
9using ReadingParameters =
10 std::vector<std::tuple<std::vector<sdbusplus::message::object_path>,
11 std::string, std::string, std::string>>;
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +020012
13using Readings = std::tuple<
14 uint64_t,
15 std::vector<std::tuple<std::string, std::string, double, uint64_t>>>;