summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-06-02 17:53:18 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-06-02 17:53:18 (GMT)
commit2607f751d363630b0475d2442c7853cc99dd3a8a (patch)
treea1e658aa908d0cfe89cb392009aa9ff83df185c2 /release_docs
parent0716e65d057471f05cd411aa5b2bef0bae8e5234 (diff)
parentdbeb06192f67cc5fbc6ef6b993129cdc5f97ddf4 (diff)
downloadhdf5-2607f751d363630b0475d2442c7853cc99dd3a8a.zip
hdf5-2607f751d363630b0475d2442c7853cc99dd3a8a.tar.gz
hdf5-2607f751d363630b0475d2442c7853cc99dd3a8a.tar.bz2
Merge pull request #551 in HDFFV/hdf5 from ~BMRIBLER/hdf5_1_8_bmr:hdf5_1_8 to hdf5_1_8
* commit 'dbeb06192f67cc5fbc6ef6b993129cdc5f97ddf4': Cleanup documentation. Removed deprecated function Description: Removed IdComponent(const hid_t h5_id). This prototype was left over from a previous deprecation. Platforms tested: Linux/32 2.6 (jam) 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 62a5b33..e1c1573 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -93,20 +93,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
===================================================