OSCAR-code/oscar/version.h
sawinglogz fb32e16c96 Clean up version.h interface and reduce duplcate code.
Only minor cosmetic changes in how the version is displayed in
certain places.
2020-01-15 13:18:00 -05:00

27 lines
599 B
C

/* Version.h
*
* Copyright (c) 2020 The OSCAR Team
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
#ifndef VERSION_H
#define VERSION_H
#include <QString>
extern const QString VersionString;
int compareVersion(const QString & version);
QString getBranchVersion();
QString getPrereleaseSuffix();
const QString & gitRevision();
const QString & gitBranch();
bool isReleaseVersion();
#endif // VERSION_H