diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-07-01 12:28:15 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-01 12:28:15 -0700 |
commit | 53b805131edeea839dc0af9a51b9e953fc4fcabf (patch) | |
tree | 978d9558210745b16e8147acd391d50dee896d1d /divesite.h | |
parent | 36657c019be70be11430ce8e785dea3fb2e6a415 (diff) | |
download | subsurface-53b805131edeea839dc0af9a51b9e953fc4fcabf.tar.gz |
Geo taxonomy: add the taxonomy information to dive sites
Make the helper functions handle it as well
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divesite.h')
-rw-r--r-- | divesite.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/divesite.h b/divesite.h index 71f3c0de7..306272e96 100644 --- a/divesite.h +++ b/divesite.h @@ -2,6 +2,7 @@ #define DIVESITE_H #include "units.h" +#include "taxonomy.h" #include <stdlib.h> #ifdef __cplusplus @@ -17,6 +18,7 @@ struct dive_site degrees_t latitude, longitude; char *description; char *notes; + struct taxonomy_data taxonomy; }; struct dive_site_table { |