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 | 367144c | 2019-09-19 15:33:52 -0500 | [diff] [blame] | 19 | /** |
| 20 | * @brief Returns the path to the message registry JSON file |
| 21 | */ |
| 22 | std::filesystem::path getMessageRegistryPath(); |
Matt Spinler | df13bdb | 2019-07-10 16:54:13 -0500 | [diff] [blame] | 23 | } // namespace pels |
| 24 | } // namespace openpower |