1 #pragma once 2 3 #include <CLI/CLI.hpp> 4 5 namespace pldmtool 6 { 7 8 namespace platform 9 { 10 11 void registerCommand(CLI::App& app); 12 13 /*@brief method to parse the command line option for 14 get PDR command. 15 */ 16 void parseGetPDROption(); 17 18 void getPDRs(); 19 20 } // namespace platform 21 22 } // namespace pldmtool 23