summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-05-30 15:52:15 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-05-30 15:52:15 (GMT)
commit6ea58166808ef930364740046880e941a005a81c (patch)
tree748c5f88b1c76a2f8bf024f7868b8f6df550b9a9 /release_docs
parent2bf8375001239d35a605117bf70a4aaf47207fff (diff)
downloadhdf5-6ea58166808ef930364740046880e941a005a81c.zip
hdf5-6ea58166808ef930364740046880e941a005a81c.tar.gz
hdf5-6ea58166808ef930364740046880e941a005a81c.tar.bz2
Updated RELEASE.txt
Description: Added items for new C++ wrappers (HDFFV-10004 and HDFFV-10156.)
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt32
1 files changed, 26 insertions, 6 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 31b1b99..15d257d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -92,20 +92,40 @@ New Features
C++ API
-------
- The following C++ API wrappers have been added to the C++ Library:
- // Determines if an object exists.
- H5Location::exists - H5Lexists.
+ // Determines if a name exists.
+ H5Location::nameExists() - C API H5Lexists()
+
+ // Checks if an ID is valid.
+ IdComponent::isValid() - C API H5Iis_valid()
+
+ // Sets the number of soft or user-defined links that can be
+ // traversed before a failure occurs.
+ LinkAccPropList::setNumLinks() - C API H5Pset_nlinks()
+
+ // Gets the number of soft or user-defined link traversals allowed
+ LinkAccPropList::getNumLinks() - C API H5Pget_nlinks()
+
+ // Returns a copy of the creation property list of a datatype.
+ DataType::getCreatePlist() - C API H5Tget_create_plist()
+
+ // Opens an object within a location, regarless its type.
+ H5Location::openObjId() - C API H5Oopen()
+ H5Location::openObjId() - C API H5Oopen()
+
+ // Closes an object opened by openObjId().
+ H5Location::closeObjId() - C API H5Oclose()
+
+ // Gets general information about a file.
+ H5File::getFileInfo() - C API H5Fget_info()
// Returns the header version of an HDF5 object.
- H5Object::objVersion - H5Oget_info for version
+ H5Object::objVersion() - C API H5Oget_info()
(BMR, 2017/05/13, HDFFV-10004, HDFFV-10156)
- New class LinkAccPropList is added for link access proprety list
(BMR, 2017/05/13, HDFFV-10156)
- - New exception ObjHeaderIException for H5O interface
- (BMR, 2017/05/13, HDFFV-10156)
-
Support for New Platforms, Languages, and Compilers
===================================================