Fixed documentation

Description:
    - Updated the description of copy constructor for clarification.
    - Removed unnecessary comments.
Platforms tested:
    Linux/64 (jelly)
This commit is contained in:
Binh-Minh Ribler
2018-03-12 19:39:20 -05:00
parent b638bbd74b
commit 2d4d39d157
52 changed files with 81 additions and 146 deletions

View File

@@ -41,10 +41,10 @@ class H5_DLLCPP H5File : public Group {
// Close this file.
virtual void close();
// Gets the access property list of this file.
// Gets a copy of the access property list of this file.
FileAccPropList getAccessPlist() const;
// Gets the creation property list of this file.
// Gets a copy of the creation property list of this file.
FileCreatPropList getCreatePlist() const;
// Gets general information about this file.
@@ -97,7 +97,7 @@ class H5_DLLCPP H5File : public Group {
// Default constructor
H5File();
// Copy constructor: makes a copy of the original H5File object.
// Copy constructor: same as the original H5File.
H5File(const H5File& original);
// Gets the HDF5 file id.