|
@@ -781,7 +781,8 @@ struct Option *G_define_standard_option(int opt)
|
|
|
If an invalid parameter was specified a empty Flag structure will be
|
|
|
returned (not NULL).
|
|
|
|
|
|
- - G_FLG_DB_TABLE
|
|
|
+ - G_FLG_DB_TABLE (do not create attribute table)
|
|
|
+ - G_FLG_V_TOPO (do not build topology)
|
|
|
|
|
|
\param flag type of Flag struct to create
|
|
|
|
|
@@ -798,7 +799,11 @@ struct Flag *G_define_standard_flag(int flag)
|
|
|
Flg->key = 't';
|
|
|
Flg->description = _("Do not create attribute table");
|
|
|
break;
|
|
|
+ case G_FLG_V_TOPO:
|
|
|
+ Flg->key = 'b';
|
|
|
+ Flg->description = _("Do not build topology");
|
|
|
+ break;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
return Flg;
|
|
|
}
|