Go to the documentation of this file. 3 #ifndef vtkVersionQuick_h 4 #define vtkVersionQuick_h 8 #define VTK_MAJOR_VERSION 9 9 #define VTK_MINOR_VERSION 3 10 #define VTK_EPOCH_VERSION 20230101 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)