blob: 64566d2e823189ffeb36be45184dd6d35aa4a246 [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 Spinlerdf13bdb2019-07-10 16:54:13 -050019} // namespace pels
20} // namespace openpower