diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2008-05-28 17:41:29 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2008-05-28 17:41:29 (GMT) |
commit | bf9465c9cc932438c5881d102b824aaa4048484c (patch) | |
tree | 5e0df357562b91d0dd617e72c05f310f99af11c1 | |
parent | c6a0c6f6e7d399e9d463f0c9bfebdd80797ee138 (diff) | |
download | hdf5-bf9465c9cc932438c5881d102b824aaa4048484c.zip hdf5-bf9465c9cc932438c5881d102b824aaa4048484c.tar.gz hdf5-bf9465c9cc932438c5881d102b824aaa4048484c.tar.bz2 |
[svn-r15079] Purpose: Update for C++ API
Description:
Added notes about fixes of bugzillas 1045 and 1068.
-rw-r--r-- | release_docs/RELEASE.txt | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index f48db42..c86184e 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -160,16 +160,18 @@ Bug Fixes since HDF5-1.8.0 C++ API ------ - - The class hierarchy was revised to address the problem reported in - Bugzilla #1068. Classes AbstractDS and Attribute are moved out of - H5Object. Class Attribute now multiply inherits from IdComponent - and AbstractDs and class DataSet from H5Object and AbstractDs. + - The class hierarchy was revised to address the problem reported + in bugzilla #1068, Attribute should not be derived from base + class H5Object. Classes AbstractDS was moved out of H5Object. + Class Attribute now multiply inherits from IdComponent and + AbstractDs and class DataSet from H5Object and AbstractDs. In addition, data member IdComponent::id was moved into subclasses: Attribute, DataSet, DataSpace, DataType, H5File, Group, and PropList. + (BMR - 2008/05/20) - - Revised the Attribute::write and Attribute::read wrappers to handle - memory allocation/deallocation properly. (Bugzilla 1045) + - Revised Attribute::write and Attribute::read wrappers to handle + memory allocation/deallocation properly. (bugzilla 1045) (BMR - 2008/05/20) @@ -552,3 +554,8 @@ Known Problems is turn on. The value of the reference in the destination attriubte is wrong. This H5Ocopy problem will affect the h5copy tool. +* In the C++ API, it appears that there are bugs in Attribute::write/read + and DataSet::write/read for fixed- and variable-len strings. The problems + are being worked on and a patch will be provided when the fixes are + available. + |