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 | |
Matthew Barth | 5c15b79 | 2017-03-01 11:17:00 -0600 | [diff] [blame] | 13 | /** |
| 14 | * @brief Fan enclosure properties |
| 15 | * @details Contains the inventory path, description and list of sensors |
| 16 | */ |
Matthew Barth | b803445 | 2017-02-17 16:39:46 -0600 | [diff] [blame] | 17 | using Properties = std::tuple<std::string, |
| 18 | std::string, |
| 19 | std::vector<std::string>>; |
| 20 | |
| 21 | } // namespace fan |
| 22 | } // namespace phosphor |