diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-10-01 05:17:33 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-10-01 05:17:33 (GMT) |
commit | 2b78b7bfd292a5731ebd8521123d1f98d5c9dae5 (patch) | |
tree | 4bef4346bf6aeafea2286b7150501ee2c65ec14a | |
parent | d5e8cfbe74c36a64df68152bb2f59fa5a4056fd5 (diff) | |
download | hdf5-2b78b7bfd292a5731ebd8521123d1f98d5c9dae5.zip hdf5-2b78b7bfd292a5731ebd8521123d1f98d5c9dae5.tar.gz hdf5-2b78b7bfd292a5731ebd8521123d1f98d5c9dae5.tar.bz2 |
[svn-r24237] Description:
Added more info to new C++ feature section.
-rw-r--r-- | release_docs/RELEASE.txt | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f2d2724..7691020 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -90,16 +90,22 @@ New Features C++ API ------- + - Added tutorial examples to c++/examples. They can be installed by + "make install-examples" and, in the installed directory, they can be + executed by running the script file run-c++-ex.sh. (BMR - 2013/09/28) - A new class, H5::H5Location, is added to represent the location concept in the C library. It is a base class to H5::H5File and H5::H5Ojbect, whose member functions are moved into H5::H5Location. H5::H5File can now inherent those functions. As a result, an H5::H5File object can have an attribute. (BMR - 2013/09/27) - - Added wrappers for H5Rget_obj_type2 and two overloaded functions that - do not require the name of the object. (BMR - 2013/09/28) - - Added tutorial examples to c++/examples. They can be installed by - "make install-examples" and, in the installed directory, they can be - executed by running the script file run-c++-ex.sh. (BMR - 2013/09/28) + - Added wrappers for H5Rget_obj_type2 to retrieve the type of the object + that an object reference points to. (BMR - 2013/09/27) + H5O_type_t H5Location::getRefObjType(void *ref, H5R_type_t ref_type) + - Added wrappers for H5Aexist to check whether an attribute exists given + a name. (BMR - 2013/09/27) + bool H5::H5Location::attrExists(const char* name) + bool H5::H5Location::attrExists(const H5std_string& name) + - Added a number of overloaded functions for convenience. (BMR - 2013/09/27) Support for New Platforms, Languages, and Compilers |