diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-16 14:39:52 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-16 14:39:52 (GMT) |
commit | afb5fc5c35eaa01b086390ab8691aea49a4a93a4 (patch) | |
tree | 2ebf6c586677373ee31a45967952f51809e123d4 /c++/src/H5Group.cpp | |
parent | 27ed849cad4c7e88a540a34f46e70acde04721da (diff) | |
download | hdf5-afb5fc5c35eaa01b086390ab8691aea49a4a93a4.zip hdf5-afb5fc5c35eaa01b086390ab8691aea49a4a93a4.tar.gz hdf5-afb5fc5c35eaa01b086390ab8691aea49a4a93a4.tar.bz2 |
[svn-r24143] Description:
Fixed comments, documentation, and mis-matched DOXYGEN_SHOULD_SKIP_THIS pairs.
Platforms tested:
Linux/32 2.6 (jam)
Regenerated and verified generated documentation.
Diffstat (limited to 'c++/src/H5Group.cpp')
-rw-r--r-- | c++/src/H5Group.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/c++/src/H5Group.cpp b/c++/src/H5Group.cpp index e83b635..eff7e50 100644 --- a/c++/src/H5Group.cpp +++ b/c++/src/H5Group.cpp @@ -149,7 +149,8 @@ Group::Group(Attribute& attr, const void* ref, H5R_type_t ref_type) : H5Object() //-------------------------------------------------------------------------- // Function: Group::getId -// Purpose: Get the id of this attribute +///\brief Get the id of this group +///\return Group identifier // Modification: // May 2008 - BMR // Class hierarchy is revised to address bugzilla 1068. Class @@ -163,6 +164,7 @@ hid_t Group::getId() const return(id); } +#ifndef DOXYGEN_SHOULD_SKIP_THIS //-------------------------------------------------------------------------- // Function: Group::p_setId ///\brief Sets the identifier of this object to a new value. @@ -187,6 +189,7 @@ void Group::p_setId(const hid_t new_id) // reset object's id to the given id id = new_id; } +#endif // DOXYGEN_SHOULD_SKIP_THIS //-------------------------------------------------------------------------- // Function: Group::close |