Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <grass/gis.h>
00031
00032
00044 char *G_ask_vector_new(const char *prompt, char *name)
00045 {
00046 return G_ask_new(prompt, name, "vector", "vector");
00047 }
00048
00049
00061 char *G_ask_vector_old(const char *prompt, char *name)
00062 {
00063 return G_ask_old(prompt, name, "vector", "vector");
00064 }
00065
00066 char *G_ask_vector_any(const char *prompt, char *name)
00067 {
00068 return G_ask_any(prompt, name, "vector", "vector", 1);
00069 }
00070
00071
00083 char *G_ask_vector_in_mapset(const char *prompt, char *name)
00084 {
00085 return G_ask_in_mapset(prompt, name, "vector", "vector");
00086 }