temporal.h 365 B

123456789101112131415
  1. #ifndef GRASS_TEMPORAL_H
  2. #define GRASS_TEMPORAL_H
  3. #include <grass/dbmi.h>
  4. #define TGISDB_DEFAULT_DRIVER "sqlite"
  5. int tgis_set_connection(dbConnection * connection);
  6. int tgis_get_connection(dbConnection * connection);
  7. const char *tgis_get_default_driver_name(void);
  8. const char *tgis_get_default_database_name(void);
  9. int tgis_set_default_connection(void);
  10. #endif