source: anuga_core/install/winxp/NetCDFWinInstaller/include/H5Cpp.h @ 7310

Last change on this file since 7310 was 7310, checked in by rwilson, 15 years ago

Added the NetCDF Windows installer.

  • Property svn:executable set to *
File size: 2.1 KB
Line 
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 files COPYING and Copyright.html.  COPYING can be found at the root   *
10 * of the source code distribution tree; Copyright.html can be found at the  *
11 * root level of an installed copy of the electronic HDF5 document set and   *
12 * is linked from the top-level documents page.  It can also be found at     *
13 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
14 * access to either file, you may request a copy from help@hdfgroup.org.     *
15 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
16
17#ifndef _H5CPP_H
18#define _H5CPP_H
19
20#include "H5Include.h"
21#include "H5Exception.h"
22#include "H5IdComponent.h"
23#include "H5DataSpace.h"
24#include "H5PropList.h"
25#include "H5Object.h"
26#include "H5AbstractDs.h"
27#include "H5Attribute.h"
28#include "H5DcreatProp.h"
29#include "H5CommonFG.h"
30#include "H5DataType.h"
31#include "H5DxferProp.h"
32#include "H5FaccProp.h"
33#include "H5FcreatProp.h"
34#include "H5AtomType.h"
35#include "H5PredType.h"
36#include "H5EnumType.h"
37#include "H5IntType.h"
38#include "H5FloatType.h"
39#include "H5StrType.h"
40#include "H5CompType.h"
41#include "H5ArrayType.h"
42#include "H5VarLenType.h"
43#include "H5DataSet.h"
44#include "H5Group.h"
45#include "H5File.h"
46#include "H5Library.h"
47 
48/* Some C++ compilers do not have offsetof macro; define to bypass the problem
49   - BMR- -EIP- 2007/08/01
50*/
51#ifndef H5_CXX_HAVE_OFFSETOF
52#ifdef HOFFSET
53   #undef HOFFSET
54#endif
55#define HOFFSET(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
56#endif
57
58#endif
Note: See TracBrowser for help on using the repository browser.