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 14 /** 15 * @brief Returns the path to the PEL repository 16 */ 17 std::filesystem::path getPELRepoPath(); 18 19 /** 20 * @brief Returns the path to the message registry JSON file 21 */ 22 std::filesystem::path getMessageRegistryPath(); 23 } // namespace pels 24 } // namespace openpower 25