diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-02-02 03:19:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-02-02 03:19:39 (GMT) |
commit | 0ce42d9ed905b0d28c8afa1e33c67fb1cdaaab8b (patch) | |
tree | 0b0c679bd9cdef50e32562219f3c0ce042ae7412 /src/H5FD.c | |
parent | fd442eae1864eeab4a1a72cdbdca62412caa6c39 (diff) | |
download | hdf5-0ce42d9ed905b0d28c8afa1e33c67fb1cdaaab8b.zip hdf5-0ce42d9ed905b0d28c8afa1e33c67fb1cdaaab8b.tar.gz hdf5-0ce42d9ed905b0d28c8afa1e33c67fb1cdaaab8b.tar.bz2 |
[svn-r8142] Purpose:
Fix build with C++ compiler
Description:
Add file driver header files for prototypes.
Platforms tested:
FreeBSD 4.9 (sleipnir) w/CC=g++
too obscure to require h5committest
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -35,13 +35,22 @@ #include "H5Eprivate.h" /* Error handling */ #include "H5Fpkg.h" /* File access */ #include "H5FDprivate.h" /* File drivers */ +#include "H5FDcore.h" /* Files stored entirely in memory */ +#include "H5FDfamily.h" /* File families */ +#include "H5FDgass.h" /* Remote files using GASS I/O */ +#include "H5FDlog.h" /* sec2 driver with I/O logging (for debugging) */ +#include "H5FDmpi.h" /* MPI-based file drivers */ +#include "H5FDmulti.h" /* Usage-partitioned file family */ +#include "H5FDsec2.h" /* POSIX unbuffered file I/O */ +#include "H5FDsrb.h" /* Remote access using SRB */ +#include "H5FDstdio.h" /* Standard C buffered I/O */ +#include "H5FDstream.h" /* In-memory files streamed via sockets */ #include "H5FLprivate.h" /* Free lists */ #include "H5Iprivate.h" /* IDs */ #include "H5MMprivate.h" /* Memory management */ #include "H5Pprivate.h" /* Property lists */ #ifdef H5_HAVE_FPHDF5 -#include "H5FDfphdf5.h" /*Flexible Parallel HDF5 driver */ #include "H5FPprivate.h" /*Flexible Parallel HDF5 */ #endif /* H5_HAVE_FPHDF5 */ |