vtkVersionMacros.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVersionMacros.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 #ifndef vtkVersionMacros_h
16 #define vtkVersionMacros_h
17 
18 /* Note: this file is deliberately both valid C and valid C++. */
19 
20 #define VTK_MAJOR_VERSION 9
21 #define VTK_MINOR_VERSION 0
22 #define VTK_BUILD_VERSION 20201030
23 #define VTK_VERSION "9.0.0"
24 #define VTK_VERSION_FULL "9.0.0-2350-gfc5d7cb174"
25 
26 #define VTK_SOURCE_VERSION "vtk version " VTK_VERSION
27 
28 #define VTK_VERSION_CHECK(major, minor, build) \
29  (10000000000ULL * major + 100000000ULL * minor + build)
30 #define VTK_VERSION_NUMBER \
31  VTK_VERSION_CHECK(VTK_MAJOR_VERSION, VTK_MINOR_VERSION, VTK_BUILD_VERSION)
32 
33 #endif