2003-02-21 22:04:35 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-02-21 22:04:35 +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-18 03:32: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. *
|
2003-02-21 22:04:35 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
1997-07-31 05:17:56 +08:00
|
|
|
|
|
|
|
/*
|
1997-08-16 00:51:34 +08:00
|
|
|
* This is the main public HDF5 include file. Put further information in
|
|
|
|
* a particular header file and include that here, don't fill this file with
|
|
|
|
* lots of gunk...
|
1997-07-31 05:17:56 +08:00
|
|
|
*/
|
1997-08-16 00:51:34 +08:00
|
|
|
#ifndef _HDF5_H
|
|
|
|
#define _HDF5_H
|
|
|
|
|
2001-04-06 01:29:14 +08:00
|
|
|
#include "H5public.h"
|
2017-12-06 02:41:54 +08:00
|
|
|
#include "H5Apublic.h" /* Attributes */
|
|
|
|
#include "H5ACpublic.h" /* Metadata cache */
|
|
|
|
#include "H5Dpublic.h" /* Datasets */
|
|
|
|
#include "H5Epublic.h" /* Errors */
|
|
|
|
#include "H5Fpublic.h" /* Files */
|
|
|
|
#include "H5FDpublic.h" /* File drivers */
|
|
|
|
#include "H5Gpublic.h" /* Groups */
|
|
|
|
#include "H5Ipublic.h" /* ID management */
|
|
|
|
#include "H5Lpublic.h" /* Links */
|
2019-08-13 16:36:42 +08:00
|
|
|
#include "H5Mpublic.h" /* Maps */
|
2017-12-06 02:41:54 +08:00
|
|
|
#include "H5MMpublic.h" /* Memory management */
|
|
|
|
#include "H5Opublic.h" /* Object headers */
|
|
|
|
#include "H5Ppublic.h" /* Property lists */
|
|
|
|
#include "H5PLpublic.h" /* Plugins */
|
|
|
|
#include "H5Rpublic.h" /* References */
|
|
|
|
#include "H5Spublic.h" /* Dataspaces */
|
|
|
|
#include "H5Tpublic.h" /* Datatypes */
|
2018-10-10 23:10:15 +08:00
|
|
|
#include "H5VLpublic.h" /* Virtual Object Layer */
|
2017-12-06 02:41:54 +08:00
|
|
|
#include "H5Zpublic.h" /* Data filters */
|
1999-08-11 04:21:32 +08:00
|
|
|
|
|
|
|
/* Predefined file drivers */
|
2019-07-26 00:36:37 +08:00
|
|
|
#include "H5FDcore.h" /* Files stored entirely in memory */
|
|
|
|
#include "H5FDdirect.h" /* Linux direct I/O */
|
|
|
|
#include "H5FDfamily.h" /* File families */
|
|
|
|
#include "H5FDhdfs.h" /* Hadoop HDFS */
|
2017-12-06 02:41:54 +08:00
|
|
|
#include "H5FDlog.h" /* sec2 driver with I/O logging (for debugging) */
|
2020-03-14 06:13:17 +08:00
|
|
|
#include "H5FDmirror.h" /* Mirror VFD and IPC definitions */
|
2019-07-26 00:36:37 +08:00
|
|
|
#include "H5FDmpi.h" /* MPI-based file drivers */
|
|
|
|
#include "H5FDmulti.h" /* Usage-partitioned file family */
|
|
|
|
#include "H5FDros3.h" /* R/O S3 "file" I/O */
|
|
|
|
#include "H5FDsec2.h" /* POSIX unbuffered file I/O */
|
2020-03-14 06:13:17 +08:00
|
|
|
#include "H5FDsplitter.h" /* Twin-channel (R/W & R/O) I/O passthrough */
|
2019-07-26 00:36:37 +08:00
|
|
|
#include "H5FDstdio.h" /* Standard C buffered I/O */
|
2007-06-13 05:20:13 +08:00
|
|
|
#ifdef H5_HAVE_WINDOWS
|
2019-07-26 00:36:37 +08:00
|
|
|
#include "H5FDwindows.h" /* Win32 I/O */
|
2007-06-13 05:20:13 +08:00
|
|
|
#endif
|
1998-04-18 05:29:43 +08:00
|
|
|
|
2018-11-29 00:26:03 +08:00
|
|
|
/* Virtual object layer (VOL) connectors */
|
|
|
|
#include "H5VLnative.h" /* Native VOL connector */
|
|
|
|
#include "H5VLpassthru.h" /* Pass-through VOL connector */
|
2018-10-21 04:06:37 +08:00
|
|
|
|
1997-08-16 00:51:34 +08:00
|
|
|
#endif
|