Lakshminarayana R. Kammath | 27693a4 | 2019-06-24 00:51:47 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #ifndef PLDM_BASE_CMD_H |
| 4 | #define PLDM_BASE_CMD_H |
| 5 | |
| 6 | #include "pldm_cmd_helper.hpp" |
| 7 | |
| 8 | /** @brief Handler for GetPLDMTypes command |
| 9 | * |
| 10 | * @param[in] args - Argument to be passed to the handler. |
| 11 | * Optional argument. |
| 12 | * |
| 13 | * @return - None |
| 14 | */ |
| 15 | void getPLDMTypes(std::vector<std::string>&& args); |
| 16 | |
| 17 | /** @brief Handler for GetPLDMVersion command |
| 18 | * |
| 19 | * |
| 20 | * @param[in] args - Argument to be passed to the handler |
| 21 | * e.g : PLDM Command Type : base, bios etc. |
| 22 | * |
| 23 | * @return - None |
| 24 | */ |
| 25 | void getPLDMVersion(std::vector<std::string>&& args); |
| 26 | |
| 27 | #endif /* PLDM_BASE_CMD_H */ |