mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: move data file version functions into version.cpp/h
It is unclear why these were located in divelist.cpp/h. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
72bb38601d
commit
60c7b503cf
9 changed files with 44 additions and 34 deletions
|
@ -11,3 +11,21 @@ const char *subsurface_canonical_version()
|
|||
{
|
||||
return CANONICAL_VERSION_STRING;
|
||||
}
|
||||
|
||||
static int min_datafile_version = 0;
|
||||
|
||||
int get_min_datafile_version()
|
||||
{
|
||||
return min_datafile_version;
|
||||
}
|
||||
|
||||
void report_datafile_version(int version)
|
||||
{
|
||||
if (min_datafile_version == 0 || min_datafile_version > version)
|
||||
min_datafile_version = version;
|
||||
}
|
||||
|
||||
int clear_min_datafile_version()
|
||||
{
|
||||
return min_datafile_version;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue