| George Liu | d664936 | 2019-11-27 19:06:51 +0800 | [diff] [blame] | 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 | |||||
| Pavithra Barithaya | a340eed | 2023-02-14 03:32:47 -0600 | [diff] [blame] | 13 | /*@brief method to parse the command line option for |
| 14 | get PDR command. | ||||
| 15 | */ | ||||
| 16 | void parseGetPDROption(); | ||||
| 17 | |||||
| 18 | void getPDRs(); | ||||
| 19 | |||||
| George Liu | d664936 | 2019-11-27 19:06:51 +0800 | [diff] [blame] | 20 | } // namespace platform |
| 21 | |||||
| 22 | } // namespace pldmtool | ||||