diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-03-07 15:42:30 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2016-03-07 15:42:30 (GMT) |
commit | b346cb0599da3b46f892365ad2ebd1e55ea173f3 (patch) | |
tree | a2c63f1639133b35138e171852118e2180d9c367 /c++/src/H5DataSet.cpp | |
parent | 3247df1224d2f226a03144fb556b2a3435794871 (diff) | |
download | hdf5-b346cb0599da3b46f892365ad2ebd1e55ea173f3.zip hdf5-b346cb0599da3b46f892365ad2ebd1e55ea173f3.tar.gz hdf5-b346cb0599da3b46f892365ad2ebd1e55ea173f3.tar.bz2 |
[svn-r29306] Purpose: Add function
Description:
Added member function ArrayType::operator= because ArrayType has
pointer data members.
Platforms tested:
Linux/32 2.6 (jam)
Linux/64 (platypus)
Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5DataSet.cpp')
-rw-r--r-- | c++/src/H5DataSet.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/c++/src/H5DataSet.cpp b/c++/src/H5DataSet.cpp index 059da85..3747967 100644 --- a/c++/src/H5DataSet.cpp +++ b/c++/src/H5DataSet.cpp @@ -67,9 +67,8 @@ DataSet::DataSet() : H5Object(), AbstractDs(), id(H5I_INVALID_HID) {} // when one of those objects is deleted, the id will be closed if // the reference counter is only 1. //-------------------------------------------------------------------------- -DataSet::DataSet(const hid_t existing_id) : H5Object(), AbstractDs() +DataSet::DataSet(const hid_t existing_id) : H5Object(), AbstractDs(), id(existing_id) { - id = existing_id; incRefCount(); // increment number of references to this id } @@ -79,9 +78,8 @@ DataSet::DataSet(const hid_t existing_id) : H5Object(), AbstractDs() ///\param original - IN: DataSet instance to copy // Programmer Binh-Minh Ribler - 2000 //-------------------------------------------------------------------------- -DataSet::DataSet(const DataSet& original) : H5Object(), AbstractDs() +DataSet::DataSet(const DataSet& original) : H5Object(), AbstractDs(), id(original.id) { - id = original.getId(); incRefCount(); // increment number of references to this id } |