Matthew Barth | b803445 | 2017-02-17 16:39:46 -0600 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | #include <vector> | ||||
5 | #include <tuple> | ||||
6 | |||||
7 | |||||
8 | namespace phosphor | ||||
9 | { | ||||
10 | namespace fan | ||||
11 | { | ||||
12 | |||||
13 | using Properties = std::tuple<std::string, | ||||
14 | std::string, | ||||
15 | std::vector<std::string>>; | ||||
16 | |||||
17 | } // namespace fan | ||||
18 | } // namespace phosphor |