Add diveplan to the dive notes

This makes it easy to print out a dive plan - it's simply stored in the
notes of the simulated dive we create.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2013-01-15 17:17:24 -08:00
parent 189cba7fd2
commit c3a08ff056
2 changed files with 90 additions and 0 deletions

1
dive.h
View file

@ -602,6 +602,7 @@ struct divedatapoint {
int depth;
int o2;
int he;
gboolean entered;
struct divedatapoint *next;
};