diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-29 17:10:29 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-29 17:10:29 (GMT) |
commit | 1032b7c9d6cbd0ac109b72add26d47436eaca035 (patch) | |
tree | 1ace5ef998e63259f27836f8c4a08e7445b6b1a1 /hl/c++ | |
parent | cc5b2ff93bc5b81993c104e64f3669a4d8f0c0a5 (diff) | |
download | hdf5-1032b7c9d6cbd0ac109b72add26d47436eaca035.zip hdf5-1032b7c9d6cbd0ac109b72add26d47436eaca035.tar.gz hdf5-1032b7c9d6cbd0ac109b72add26d47436eaca035.tar.bz2 |
[svn-r12315] Purpose:
Code cleanup, etc.
Description:
Fix some inconsistent coding in the packet table examples
Correct header file issues in C++ packet table wrapper
Platforms tested:
FreeBSD 4.11 (sleipnir) w/C++
Linux 2.4/64 (mir) w/C++ & FORTRAN
Diffstat (limited to 'hl/c++')
-rw-r--r-- | hl/c++/src/H5PacketTable.cpp | 3 | ||||
-rw-r--r-- | hl/c++/src/H5PacketTable.h | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/hl/c++/src/H5PacketTable.cpp b/hl/c++/src/H5PacketTable.cpp index 0cfdb59..fabe490 100644 --- a/hl/c++/src/H5PacketTable.cpp +++ b/hl/c++/src/H5PacketTable.cpp @@ -20,6 +20,9 @@ * February 2004 */ +/* High-level library internal header file */ +#include "H5HLprivate2.h" + #include "H5PacketTable.h" /********************************/ diff --git a/hl/c++/src/H5PacketTable.h b/hl/c++/src/H5PacketTable.h index bd3d166..3ce24c4 100644 --- a/hl/c++/src/H5PacketTable.h +++ b/hl/c++/src/H5PacketTable.h @@ -23,8 +23,8 @@ #ifndef H5PTWRAP_H #define H5PTWRAP_H -/* High-level library internal header file */ -#include "H5HLprivate2.h" +/* Public HDF5 header */ +#include "hdf5.h" #include "H5PTpublic.h" #include "H5api_adpt.h" |