2020-01-13 23:18:14 +00:00
|
|
|
/* Version.h
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2020-01-13 23:18:14 +00:00
|
|
|
* Copyright (c) 2020 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-04-09 21:01:57 +00:00
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
#ifndef VERSION_H
|
|
|
|
#define VERSION_H
|
|
|
|
|
2020-01-13 23:18:14 +00:00
|
|
|
#include <QString>
|
2011-12-16 12:11:33 +00:00
|
|
|
|
2020-01-13 23:18:14 +00:00
|
|
|
extern const QString VersionString;
|
2011-12-16 12:11:33 +00:00
|
|
|
|
2020-01-13 23:37:32 +00:00
|
|
|
int compareVersion(const QString & version);
|
|
|
|
|
|
|
|
QString getBranchVersion();
|
2020-01-15 18:18:00 +00:00
|
|
|
QString getPrereleaseSuffix();
|
2020-01-13 23:37:32 +00:00
|
|
|
const QString & gitRevision();
|
|
|
|
const QString & gitBranch();
|
|
|
|
|
2020-01-15 18:18:00 +00:00
|
|
|
bool isReleaseVersion();
|
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
#endif // VERSION_H
|