diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-03-14 19:32:26 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-03-14 19:32:26 (GMT) |
commit | 49fa4563ef21009a05c11da5e05d0e71d2c24366 (patch) | |
tree | 73f57a583375fef27b3616e0febaa786394c7ae5 /c++/src/H5DataSet.h | |
parent | 7e6577fdea9f78e4b140f2b1c7684c9cec7d9a7e (diff) | |
download | hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.zip hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.tar.gz hdf5-49fa4563ef21009a05c11da5e05d0e71d2c24366.tar.bz2 |
[svn-r10212] Purpose: Added more wrappers
Description:
Added the following to the C++ library
+ overloaded functions:
string CommonFG::getObjnameByIdx(hsize_t idx)
H5T_order_t AtomType::getOrder()
+ wrappers for H5*close
+ wrappers for H5Arename, H5Aget_storage_size, and H5Dget_storage_size
Platforms tested:
Linux 2.4 (heping)
AIX 5.1 (copper)
SunOS 5.8 64-bit (sol)
Diffstat (limited to 'c++/src/H5DataSet.h')
-rw-r--r-- | c++/src/H5DataSet.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/c++/src/H5DataSet.h b/c++/src/H5DataSet.h index 83cb1ad..a15103a 100644 --- a/c++/src/H5DataSet.h +++ b/c++/src/H5DataSet.h @@ -24,6 +24,9 @@ namespace H5 { class H5_DLLCPP DataSet : public AbstractDs { public: + // Close this dataset. + virtual void close(); + // Extends the dataset with unlimited dimension. void extend( const hsize_t* size ) const; @@ -44,7 +47,7 @@ class H5_DLLCPP DataSet : public AbstractDs { // Determines whether space has been allocated for a dataset. void getSpaceStatus(H5D_space_status_t& status) const; - // Gets the storage size of this dataset. + // Returns the amount of storage size required for this dataset. hsize_t getStorageSize() const; // not yet implemented?? |