summaryrefslogtreecommitdiffstats
path: root/occ_finder.hpp
blob: cad8277d5090946ea72ef52343e8f7d321d9765e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <vector>
#include <string>

namespace open_power
{
namespace occ
{
namespace finder
{

/** @brief Get OCC objects on the system by mapping them to CPU inventory
  * @returns vector of occ objects, such as occ0, occ1, and so on.
  */
std::vector<std::string> get();

} // namespace finder
} // namespace occ
} // namespace open_power
OpenPOWER on IntegriCloud