Refactored cppidx generator name to json

This commit is contained in:
Bartek Kryza
2023-03-13 22:14:26 +01:00
parent bffe9913aa
commit 19ae58f493
6 changed files with 15 additions and 15 deletions

View File

@@ -61,7 +61,7 @@ cli_flow_t cli_handler::parse(int argc, const char **argv)
static const std::map<std::string, clanguml::common::generator_type_t>
generator_type_names{
{"plantuml", clanguml::common::generator_type_t::plantuml},
{"cppidx", clanguml::common::generator_type_t::cppidx}};
{"json", clanguml::common::generator_type_t::json}};
app.add_option("-c,--config", config_path,
"Location of configuration file, when '-' read from stdin");