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 int major_version;
|
|
|
|
extern const int minor_version;
|
|
|
|
extern const int revision_number;
|
|
|
|
extern const QString ReleaseStatus;
|
|
|
|
extern const int build_number;
|
2016-03-03 13:26:08 +00:00
|
|
|
|
2020-01-13 23:18:14 +00:00
|
|
|
extern const QString VersionString;
|
|
|
|
extern const QString ShortVersionString;
|
2011-12-16 12:11:33 +00:00
|
|
|
|
2020-01-13 23:18:14 +00:00
|
|
|
extern const QString PlatformString;
|
2011-12-16 12:11:33 +00:00
|
|
|
|
|
|
|
#endif // VERSION_H
|