summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataSet.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-27 20:55:53 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2004-05-27 20:55:53 (GMT)
commitf5492ae03baf06d6ee68b27189e26998c4f3d35b (patch)
tree20ec104637b9743b335906a2fb9a661f7aa3477b /c++/src/H5DataSet.cpp
parent2ce06c39120fe3d89c0faa1c948b5a0399e968e2 (diff)
downloadhdf5-f5492ae03baf06d6ee68b27189e26998c4f3d35b.zip
hdf5-f5492ae03baf06d6ee68b27189e26998c4f3d35b.tar.gz
hdf5-f5492ae03baf06d6ee68b27189e26998c4f3d35b.tar.bz2
[svn-r8593] Purpose:
Add more C++ wrapper and documentation - incrementally check-in Description Added another overloaded constructor to StrType. Added doxygen documentation to H5IdComponent.cpp. Corrected some comments. This is an incremental check-in to preserve the code, corresponding tests will follow in a few weeks. Platforms: SunOS 5.7 (arabica) Linux 2.4 (eirene) Misc. update:
Diffstat (limited to 'c++/src/H5DataSet.cpp')
-rw-r--r--c++/src/H5DataSet.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp
index b8ee423..112b3fa 100644
--- a/c++/src/H5DataSet.cpp
+++ b/c++/src/H5DataSet.cpp
@@ -51,7 +51,7 @@ DataSet::DataSet() : AbstractDs() {}
///\param existing_id - IN: Id of an existing dataset
// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
-DataSet::DataSet( const hid_t dataset_id ) : AbstractDs( dataset_id ) {}
+DataSet::DataSet(const hid_t existing_id) : AbstractDs(existing_id) {}
//--------------------------------------------------------------------------
// Function: DataSet copy constructor
@@ -196,7 +196,8 @@ hsize_t DataSet::getVlenBufSize( DataType& type, DataSpace& space ) const
//--------------------------------------------------------------------------
// Function: DataSet::getVlenBufSize
///\brief Reclaims VL datatype memory buffers.
-///\param dataspace - IN: Selection for the memory buffer to free the
+///\param type - IN: Datatype, which is the datatype stored in the buffer
+///\param space - IN: Selection for the memory buffer to free the
/// VL datatypes within
///\param xfer_plist - IN: Property list used to create the buffer
///\param buf - IN: Pointer to the buffer to be reclaimed