mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
60c7b503cf
It is unclear why these were located in divelist.cpp/h. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
13 lines
329 B
C
13 lines
329 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
/* this is used for both git and xml format */
|
|
static constexpr int dataformat_version = 3;
|
|
|
|
const char *subsurface_git_version();
|
|
const char *subsurface_canonical_version();
|
|
int get_min_datafile_version();
|
|
void report_datafile_version(int version);
|
|
int clear_min_datafile_version();
|
|
|
|
#endif
|