vtkVersionQuick.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 #ifndef vtkVersionQuick_h
4 #define vtkVersionQuick_h
5 
6 /* Note: this file is deliberately both valid C and valid C++. */
7 
8 #define VTK_MAJOR_VERSION 9
9 #define VTK_MINOR_VERSION 3
10 #define VTK_EPOCH_VERSION 20230101
11 
12 #define VTK_VERSION_CHECK(major, minor, build) \
13  (10000000000ULL * major + 100000000ULL * minor + build)
14 #define VTK_VERSION_NUMBER_QUICK \
15  VTK_VERSION_CHECK(VTK_MAJOR_VERSION, VTK_MINOR_VERSION, VTK_EPOCH_VERSION)
16 
17 #endif