COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
covise_version.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef COVISE_VERSION_H
9 #define COVISE_VERSION_H
10 
11 #include <util/coTypes.h>
12 
13 // update, when .net file format changes
14 #define NET_FILE_VERERSION 632
15 
16 namespace covise
17 {
18 
20 {
21 public:
22  // get the short version string, e.g. "VIR_SNAP-2001-01-F"
23  static const char *shortVersion();
24 
25  // get the long version string, e.g. "Vircinity Development - January 2001"
26  static const char *longVersion();
27 
29  static const char *hash();
30 
32  static const char *compileDate();
33 
35  static const char *arch();
36 
38  static int year();
39 
41  static int month();
42 };
43 }
44 #endif
#define UTILEXPORT
Definition: coExport.h:194
Definition: covise_version.h:19