diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-03-04 23:20:29 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | c22fd9f4fd6699333629b8acb1e9c135a9783082 (patch) | |
tree | 7fad8249eb4fb3fa2797329716b1038d115a62d9 /core/save-html.c | |
parent | f2cdca7bccfcdfa04639600689b2b13b38b56898 (diff) | |
download | subsurface-c22fd9f4fd6699333629b8acb1e9c135a9783082.tar.gz |
Dive sites: prepare for dive site ref-counting
Add a dive site table to each dive site to keep track of dives
that have been added to a dive site. Add two functions to add
dives to / remove dives from dive sites.
Since dive sites now contain a dive table, the order of includes
had to be changed: "divesite.h" now includes "dive.h" and not
vice-versa. This caused some include churn.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/save-html.c')
-rw-r--r-- | core/save-html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/save-html.c b/core/save-html.c index aeb74bf95..f9d7049a9 100644 --- a/core/save-html.c +++ b/core/save-html.c @@ -7,7 +7,8 @@ #include "save-html.h" #include "qthelper.h" #include "gettext.h" -#include "stdio.h" +#include "divesite.h" +#include <stdio.h> void write_attribute(struct membuffer *b, const char *att_name, const char *value, const char *separator) { |