summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataSet.h
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.h
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.h')
-rw-r--r--c++/src/H5DataSet.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/c++/src/H5DataSet.h b/c++/src/H5DataSet.h
index 39640ea..6960757 100644
--- a/c++/src/H5DataSet.h
+++ b/c++/src/H5DataSet.h
@@ -79,18 +79,16 @@ class H5_DLLCPP DataSet : public AbstractDs {
// Retrieves a dataspace with the region pointed to selected.
DataSpace getRegion(void *ref, H5R_type_t ref_type = H5R_DATASET_REGION) const;
- // Creates a copy of an existing DataSet using its id
- // Note: used by CommonFG to return a DataSet; should be modified
- // to use friend template function instead)
- DataSet( const hid_t dataset_id );
+ // Creates a copy of an existing DataSet using its id.
+ DataSet(const hid_t existing_id);
- // Used by the API to appropriately close a dataset
+ // Used by the API to appropriately close a dataset.
virtual void p_close() const;
- // Default constructor
+ // Default constructor.
DataSet();
- // Copy constructor
+ // Copy constructor.
DataSet( const DataSet& original );
virtual ~DataSet();