Deepak Kodihalli | 4779531 | 2017-03-17 07:12:08 -0500 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <vector> | ||||
4 | #include <string> | ||||
5 | |||||
6 | namespace open_power | ||||
7 | { | ||||
8 | namespace occ | ||||
9 | { | ||||
10 | namespace finder | ||||
11 | { | ||||
12 | |||||
13 | /** @brief Get OCC objects on the system by mapping them to processor inventory | ||||
14 | * @returns list of occ objects, such as occ0, occ1, and so on. | ||||
15 | */ | ||||
16 | std::vector<std::string> get(); | ||||
17 | |||||
18 | } // namespace finder | ||||
19 | } // namespace occ | ||||
20 | } // namespace open_power |