vtk-dicom  0.8.14
vtkDICOMConfig.h
1 /*=========================================================================
2 
3  Program: DICOM for VTK
4 
5  Copyright (c) 2012-2022 David Gobbi
6  All rights reserved.
7  See Copyright.txt or http://www.cognitive-antics.net/bsd3.txt for details.
8 
9  This software is distributed WITHOUT ANY WARRANTY; without even
10  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  PURPOSE. See the above copyright notice for more information.
12 
13 =========================================================================*/
14 
15 #ifndef vtkDICOMConfig_h
16 #define vtkDICOMConfig_h
17 
18 /* Configuration information. */
19 #define DICOM_BUILD_SHARED_LIBS
20 #define DICOM_BUILD_TESTING
21 /* #undef DICOM_USE_GDCM */
22 /* #undef DICOM_USE_DCMTK */
23 /* #undef DICOM_USE_SQLITE */
24 #define DICOM_USE_VTKZLIB
25 
26 /* Version number. */
27 #define DICOM_MAJOR_VERSION 0
28 #define DICOM_MINOR_VERSION 8
29 #define DICOM_PATCH_VERSION 14
30 #define DICOM_SHORT_VERSION "0.8"
31 #define DICOM_VERSION "0.8.14"
32 
33 /* Legacy (for backwards compatibility) */
34 #define DICOM_BUILD_VERSION DICOM_PATCH_VERSION
35 
36 /* To support 'override' for C++11 compilers */
37 #define VTK_DICOM_OVERRIDE override
38 /* To support '=delete' for C++11 compilers */
39 #define VTK_DICOM_DELETE = delete
40 
41 #endif