My Project 1.10.8
H5Include.h
1// C++ informative line for the emacs editor: -*- C++ -*-
2/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3 * Copyright by The HDF Group. *
4 * Copyright by the Board of Trustees of the University of Illinois. *
5 * All rights reserved. *
6 * *
7 * This file is part of HDF5. The full HDF5 copyright notice, including *
8 * terms governing use, modification, and redistribution, is contained in *
9 * the COPYING file, which can be found at the root of the source code *
10 * distribution tree, or in https://www.hdfgroup.org/licenses. *
11 * If you do not have access to either file, you may request a copy from *
12 * help@hdfgroup.org. *
13 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
14
15#include <hdf5.h>
16
17// These are defined in H5Opkg.h, which should not be included in the C++ API,
18// so re-define them here for now.
19
20/* Initial version of the object header format */
21#define H5O_VERSION_1 1
22
23/* Revised version - leaves out reserved bytes and alignment padding, and adds
24 * magic number as prefix and checksum as suffix for all chunks.
25 */
26#define H5O_VERSION_2 2
27
28// Define H5_OVERRIDE to override for C++11.
29#if defined(__cplusplus) && (201103L <= __cplusplus)
30#define H5_OVERRIDE override
31#else
32#define H5_OVERRIDE
33#endif


The HDF Group Help Desk:
  Copyright by The HDF Group
and the Board of Trustees of the University of Illinois