DOpE
version.h
Go to the documentation of this file.
1 #ifndef VERSION_H_
2 #define VERSION_H_
3 
4 namespace DOpE
5 {
6  namespace VERSION
7  {
8  //Don't increase unless some major changes have happend
9  //Then set minor and fix to zero
10  const unsigned int major = 3;
11  //Update when you add new functionality
12  //Then set fix to zero
13  const unsigned int minor = 0;
14  //Update when you have fixed a bug
15  const unsigned int fix = 0;
16  //If we want we can give additional information here
17  const std::string postfix = "";
18  //When updating, please increase the time
19  const unsigned int day = 25;
20  const unsigned int month = 01;
21  const unsigned int year = 2016;
22  }
23 }
24 
25 #endif
const unsigned int fix
Definition: version.h:15
const unsigned int year
Definition: version.h:21
const std::string postfix
Definition: version.h:17
const unsigned int minor
Definition: version.h:13
const unsigned int month
Definition: version.h:20
const unsigned int day
Definition: version.h:19
const unsigned int major
Definition: version.h:10