mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add suport to import Scubapro's LogTrak files
Import can be done from .script files generated by LogTrak software or from .asd files generated by SmartTrak and LogTrak export option. This code was writen in C, and has just been "ported" to some extent to C++, so it can work with recent rework of Subsurface to C++. I'm not a C++ guy, so this is mostly C with some make-up. Signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com>
This commit is contained in:
parent
9baf36da45
commit
9e6ed55cf5
6 changed files with 1355 additions and 1 deletions
|
@ -33,5 +33,7 @@ extern std::pair<std::string, int> readfile(const char *filename); // return dat
|
|||
extern int try_to_open_cochran(const char *filename, std::string &mem, struct divelog *log);
|
||||
extern int try_to_open_liquivision(const char *filename, std::string &mem, struct divelog *log);
|
||||
extern int datatrak_import(std::string &mem, std::string &wl_mem, struct divelog *log);
|
||||
extern int logtrak_import(const std::string &mem, struct divelog *log);
|
||||
extern int scubapro_asd_import(const std::string &mem, struct divelog *log);
|
||||
|
||||
#endif // FILE_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue