VersionInfo.h
1 /*
2  * Medical Image Registration ToolKit (MIRTK)
3  *
4  * Copyright 2013-2015 Imperial College London
5  * Copyright 2013-2015 Andreas Schuh
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef MIRTK_VersionInfo_H
21 #define MIRTK_VersionInfo_H
22 
23 
24 /// Major version number
25 #define MIRTK_VERSION_MAJOR 2
26 
27 /// Minor version number
28 #define MIRTK_VERSION_MINOR 0
29 
30 /// Patch number
31 #define MIRTK_VERSION_PATCH 0
32 
33 /// Full version string (including 'rc', 'beta' or 'alpha' prefix)
34 const char * const MIRTK_VERSION_STRING = "2.0.0";
35 
36 /// Revision of working copy or NULL otherwise
37 const char * const MIRTK_REVISION = "8c2aa10";
38 
39 
40 #endif // MIRTK_VersionInfo_H