| 153 | } |
| 154 | |
| 155 | int mode_metadata(int argc, const char* argv[]) { |
| 156 | TModChooser modChooser; |
| 157 | modChooser.AddMode("set", set_key, "set model property by name/value"); |
| 158 | modChooser.AddMode("get", get_keys, "get model property/properties by name"); |
| 159 | modChooser.AddMode("dump", dump, "dump model info fields"); |
| 160 | modChooser.AddMode("dump-feature-names", dump_feature_names, "dump feature names"); |
| 161 | modChooser.DisableSvnRevisionOption(); |
| 162 | modChooser.Run(argc, argv); |
| 163 | return 0; |
| 164 | } |
nothing calls this directly
no test coverage detected