@brief class for extracting data for custom subcommand generation.
| 54 | |
| 55 | /// @brief class for extracting data for custom subcommand generation. |
| 56 | class SubcommandData { |
| 57 | public: |
| 58 | std::string name{""}; |
| 59 | std::string description{""}; |
| 60 | std::string modifiers{""}; |
| 61 | std::string data{""}; |
| 62 | std::size_t next{std::string::npos}; |
| 63 | }; |
| 64 | |
| 65 | SubcommandData extract_subcomand_info(const std::string &description_string, std::size_t index); |
| 66 |
nothing calls this directly
no outgoing calls
no test coverage detected