blob: 91d8c5f5ac71411e1caa78a08275a2209541ae2d [file] [log] [blame]
Matt Spinlerdf13bdb2019-07-10 16:54:13 -05001#pragma once
2#include <filesystem>
3
4namespace openpower
5{
6namespace pels
7{
8
9/**
10 * @brief Returns the path to the PEL ID file
11 */
12std::filesystem::path getPELIDFile();
13
Matt Spinler89fa0822019-07-17 13:54:30 -050014/**
15 * @brief Returns the path to the PEL repository
16 */
17std::filesystem::path getPELRepoPath();
18
Matt Spinler367144c2019-09-19 15:33:52 -050019/**
20 * @brief Returns the path to the message registry JSON file
21 */
22std::filesystem::path getMessageRegistryPath();
Matt Spinlerdf13bdb2019-07-10 16:54:13 -050023} // namespace pels
24} // namespace openpower