diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-03-09 12:54:52 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-03-09 12:54:52 (GMT) |
commit | a3a0526cb8492d24488fef10ff16b4ff1cf7fd23 (patch) | |
tree | f4f95187607d5896e2100ee6a4b1db84d8d3d4ae /release_docs/RELEASE.txt | |
parent | 8222b344066b94ec3010ea408f306ac5fc03ea51 (diff) | |
download | hdf5-a3a0526cb8492d24488fef10ff16b4ff1cf7fd23.zip hdf5-a3a0526cb8492d24488fef10ff16b4ff1cf7fd23.tar.gz hdf5-a3a0526cb8492d24488fef10ff16b4ff1cf7fd23.tar.bz2 |
[svn-r29366] Purpose: Update RELEASE.txt
Description:
Added note about the changes in the C++ Packet Table library
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 23fc6c9..0d2f202 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -416,7 +416,7 @@ New Features High-Level APIs: ------ - - New public functions in Packet Table API + - New public functions in the C Packet Table API Two accessor functions were added per HDFFV-8623/patch 003. /* Returns the ID of the dataset associated with the packet table */ @@ -426,6 +426,28 @@ New Features hid_t H5PTget_type(hid_t table_id); (BMR, 2016/03/04, HDFFV-8623) + - New public functions in the C++ Packet Table API + + Two accessor wrappers to class PacketTable, per HDFFV-8623/patch 004. + /* Returns the ID of the dataset associated with the packet table */ + hid_t PacketTable::GetDataset() + + /* Returns the ID of the datatype the packet table uses */ + hid_t PacketTable::GetDataset() + (BMR, 2016/03/04, HDFFV-8623) + + - Member functions having "char*" as an argument + + Overloaded functions were added to provide "const char*" argument, the + existing version will be deprecated. + (BMR, 2016/03/04) + + - Commented out functions are renewed + + The old function VL_PacketTable::FreeReadBuff that had been ifdef'ed out + now became PacketTable::FreeBuff() + (BMR, 2016/03/04, HDFFV-442) + - A new API function H5DOwrite_chunk. It writes a data chunk directly into a file bypassing hyperslab selection, data conversion, and filter pipeline. The user must be careful with the function and |