Gas choices working, both directions ( Planner and Table )

The gas choice now works and correctly ( I hope ) calculates
the gas choosen to show on the planner. User can choose the
gas from the list on the visual planner, and also on the table.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
Tomaz Canabrava 2013-08-30 15:06:26 -03:00
parent 2d0e877bb2
commit 5e722a93e4
4 changed files with 41 additions and 11 deletions

View file

@ -1,6 +1,11 @@
#ifndef PLANNER_H
#define PLANNER_H
#ifdef __cplusplus
extern "C" {
#endif
extern void plan(struct diveplan *diveplan, char **cache_datap, struct dive **divep, char **error_string_p);
extern int validate_gas(const char *text, int *o2_p, int *he_p);
extern int validate_time(const char *text, int *sec_p, int *rel_p);
@ -19,4 +24,8 @@ extern char *cache_data;
extern char *disclaimer;
extern double plangflow, plangfhigh;
#ifdef __cplusplus
}
#endif
#endif /* PLANNER_H */