vtk_hdf5.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 vtk_hdf5_h
4 #define vtk_hdf5_h
5 
6 /* Use the hdf5 library configured for VTK. */
7 #define VTK_MODULE_USE_EXTERNAL_vtkhdf5 0
8 
9 #define H5_USE_110_API
10 
11 #if VTK_MODULE_USE_EXTERNAL_vtkhdf5
12 #define vtkhdf5_is_parallel 0
13 #if vtkhdf5_is_parallel
14 #include <vtk_mpi.h>
15 #endif
16 #undef vtkhdf5_is_parallel
17 
18 # include <hdf5.h>
19 # include <hdf5_hl.h>
20 #else
21 # include <vtkhdf5/src/hdf5.h>
22 # include <vtkhdf5/hl/src/hdf5_hl.h>
23 #endif
24 
25 #endif