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 } // namespace pels
15 } // namespace openpower
16