Matt Spinler | df13bdb | 2019-07-10 16:54:13 -0500 | [diff] [blame] | 1 | #pragma once |
2 | #include <filesystem> | ||||
3 | |||||
4 | namespace openpower | ||||
5 | { | ||||
6 | namespace pels | ||||
7 | { | ||||
8 | |||||
9 | /** | ||||
10 | * @brief Returns the path to the PEL ID file | ||||
11 | */ | ||||
12 | std::filesystem::path getPELIDFile(); | ||||
13 | |||||
Matt Spinler | 89fa082 | 2019-07-17 13:54:30 -0500 | [diff] [blame] | 14 | /** |
15 | * @brief Returns the path to the PEL repository | ||||
16 | */ | ||||
17 | std::filesystem::path getPELRepoPath(); | ||||
18 | |||||
Matt Spinler | df13bdb | 2019-07-10 16:54:13 -0500 | [diff] [blame] | 19 | } // namespace pels |
20 | } // namespace openpower |