2001-03-03 02:53:15 +08:00
|
|
|
// C++ informative line for the emacs editor: -*- C++ -*-
|
2003-01-07 12:22:12 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2005-10-01 23:29:18 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-15 00:54:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2005-10-01 23:29:18 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2003-01-07 12:22:12 +08:00
|
|
|
|
2013-09-23 12:04:26 +08:00
|
|
|
#ifndef __H5Classes_H
|
|
|
|
#define __H5Classes_H
|
2000-11-15 05:30:12 +08:00
|
|
|
|
|
|
|
namespace H5 {
|
2017-03-03 22:45:57 +08:00
|
|
|
class Exception;
|
|
|
|
class IdComponent;
|
|
|
|
class H5Location;
|
|
|
|
class H5Object;
|
|
|
|
class PropList;
|
|
|
|
class FileCreatPropList;
|
|
|
|
class FileAccPropList;
|
|
|
|
class LinkAccPropList;
|
|
|
|
class DSetCreatPropList;
|
|
|
|
class DSetMemXferPropList;
|
|
|
|
class DTypePropList;
|
|
|
|
class DataType;
|
|
|
|
class DataSpace;
|
|
|
|
class AtomType;
|
|
|
|
class PredType;
|
|
|
|
class EnumType;
|
|
|
|
class IntType;
|
|
|
|
class FloatType;
|
|
|
|
class StrType;
|
|
|
|
class CompType;
|
|
|
|
class AbstractDs;
|
|
|
|
class DataSet;
|
|
|
|
class Group;
|
|
|
|
class H5File;
|
|
|
|
class Attribute;
|
|
|
|
class H5Library;
|
2000-11-15 05:30:12 +08:00
|
|
|
}
|
2013-09-23 12:04:26 +08:00
|
|
|
#endif // __H5Classes_H
|