summaryrefslogtreecommitdiffstats
path: root/c++/src/H5LcreatProp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2019-02-16 13:47:46 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2019-02-16 13:47:46 (GMT)
commita9283319a942032022384a1c3560a3f92ded36bf (patch)
tree4e5653e25b3c90284488a2b0d38323a2e1ddd942 /c++/src/H5LcreatProp.h
parente1046db0e68f8188df4edc20ddc364a50500ad77 (diff)
parent6c212353c45ef84b5c977c6019e4d72263534aea (diff)
downloadhdf5-a9283319a942032022384a1c3560a3f92ded36bf.zip
hdf5-a9283319a942032022384a1c3560a3f92ded36bf.tar.gz
hdf5-a9283319a942032022384a1c3560a3f92ded36bf.tar.bz2
Merge pull request #1547 in HDFFV/hdf5 from ~BMRIBLER/hdf5_bmr_cpp5:develop to develop
C++ wrapper for H5Ovisit2 * commit '6c212353c45ef84b5c977c6019e4d72263534aea': Code improvement Removed an extra "using" statement Adding documentation Added C++ wrapper for H5Ovisit2 Adding a C++ wrapper
Diffstat (limited to 'c++/src/H5LcreatProp.h')
-rw-r--r--c++/src/H5LcreatProp.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/c++/src/H5LcreatProp.h b/c++/src/H5LcreatProp.h
index 12cb479..f6e10bf 100644
--- a/c++/src/H5LcreatProp.h
+++ b/c++/src/H5LcreatProp.h
@@ -12,9 +12,6 @@
* help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-// Class LinkCreatPropList represents the HDF5 file access property list and
-// inherits from DataType.
-
#ifndef __H5LinkCreatPropList_H
#define __H5LinkCreatPropList_H
@@ -22,15 +19,15 @@ namespace H5 {
/*! \class LinkCreatPropList
\brief Class LinkCreatPropList inherits from PropList and provides
- wrappers for the HDF5 file access property list.
+ wrappers for the HDF5 link creation property list.
*/
// Inheritance: PropList -> IdComponent
class H5_DLLCPP LinkCreatPropList : public PropList {
public:
- ///\brief Default file access property list.
+ ///\brief Default link creation property list.
static const LinkCreatPropList& DEFAULT;
- // Creates a file access property list.
+ // Creates a link creation property list.
LinkCreatPropList();
///\brief Returns this class name.
@@ -39,7 +36,7 @@ class H5_DLLCPP LinkCreatPropList : public PropList {
// Copy constructor: same as the original LinkCreatPropList.
LinkCreatPropList(const LinkCreatPropList& original);
- // Creates a copy of an existing file access property list
+ // Creates a copy of an existing link creation property list
// using the property list id.
LinkCreatPropList (const hid_t plist_id);