mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
27 lines
652 B
C
27 lines
652 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 int major_version;
|
|
extern const int minor_version;
|
|
extern const int revision_number;
|
|
extern const QString ReleaseStatus;
|
|
extern const int build_number;
|
|
|
|
extern const QString VersionString;
|
|
extern const QString ShortVersionString;
|
|
|
|
extern const QString PlatformString;
|
|
|
|
#endif // VERSION_H
|