vtk_hdf5.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtk_hdf5.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 vtk_hdf5_h
16 #define vtk_hdf5_h
17 
18 /* Use the hdf5 library configured for VTK. */
19 #define VTK_MODULE_USE_EXTERNAL_vtkhdf5 0
20 
21 #define H5_USE_110_API
22 
23 #if VTK_MODULE_USE_EXTERNAL_vtkhdf5
24 #define vtkhdf5_is_parallel 0
25 #if vtkhdf5_is_parallel
26 #include <vtk_mpi.h>
27 #endif
28 #undef vtkhdf5_is_parallel
29 
30 # include <hdf5.h>
31 # include <hdf5_hl.h>
32 #else
33 # include <vtkhdf5/src/hdf5.h>
34 # include <vtkhdf5/hl/src/hdf5_hl.h>
35 #endif
36 
37 #endif