diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-08-20 04:28:56 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2004-08-20 04:28:56 (GMT) |
commit | 226df4069427644a4a53087e8303a5685a07533c (patch) | |
tree | 923992497bd180937629302c5ac47aef4549f730 /c++ | |
parent | d2b85ec9f1d9dd6e21dd4fbb59720232d32d4a63 (diff) | |
download | hdf5-226df4069427644a4a53087e8303a5685a07533c.zip hdf5-226df4069427644a4a53087e8303a5685a07533c.tar.gz hdf5-226df4069427644a4a53087e8303a5685a07533c.tar.bz2 |
[svn-r9126] Purpose: Updating RM
Description
Added the rest of the C++ examples to the RM.
Platforms tested:
Verified on Windows
Misc. update:
Diffstat (limited to 'c++')
-rw-r--r-- | c++/src/H5CppDoc.h | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/c++/src/H5CppDoc.h b/c++/src/H5CppDoc.h index daa5236..f451d56 100644 --- a/c++/src/H5CppDoc.h +++ b/c++/src/H5CppDoc.h @@ -44,26 +44,47 @@ File Interface (H5F) H5File Group Interface (H5G) Group Identifier Interface (H5I) IdComponent - Property List Interface (H5P) PropList - Reference Interface (H5R) Reference + Property List Interface (H5P) PropList and subclasses Dataspace Interface (H5S) DataSpace - Datatype Interface (H5T) DataType + Datatype Interface (H5T) DataType and subclasses \endverbatim * \section install_sec Installation * - * Please refer to the file release_docs/INSTALL + * Please refer to the file release_docs/INSTALL_Windows_withcpp.txt * under the top directory for information about installing, building, * and testing the C++ API. * * */ -///\par Dataset example: -/// This example shows how to create datasets. +/// This example shows how to create datasets. +///\par ///\example create.cpp -///\par Another example: -/// This example shows how to write datasets. +///\par +/// This example shows how to write datasets. ///\example writedata.cpp +///\par +/// This example shows how to read datasets. +///\example readdata.cpp + +///\par +/// This example shows how to create a compound datatype, +/// write an array which has the compound datatype to the file, +/// and read back fields' subsets. +///\example compound.cpp + +///\par +/// This example shows how to work with extendible datasets. +///\example extend_ds.cpp + +///\par +/// This example shows how to read data from a chunked dataset. +///\example chunks.cpp + +///\par +/// This example shows how to work with groups. +///\example h5group.cpp + #endif |