summaryrefslogtreecommitdiffstats
path: root/c++/src/H5IdComponent.cpp
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-29 19:13:29 (GMT)
committerGitHub <noreply@github.com>2023-06-29 19:13:29 (GMT)
commitfd933f30b1f8cd487ad790ac0b054bb779280a62 (patch)
tree9e366b2c19f1d84e28af4e588daf7bd8c075f8b6 /c++/src/H5IdComponent.cpp
parentfd56a593b7928da636b2494b25cd7478fed78c29 (diff)
downloadhdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.zip
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.gz
hdf5-fd933f30b1f8cd487ad790ac0b054bb779280a62.tar.bz2
Remove programmer/date from comments (#3210)
* Removes Programmer: and Date: fields * Fixes a few Modifications: fields leftover from previous work
Diffstat (limited to 'c++/src/H5IdComponent.cpp')
-rw-r--r--c++/src/H5IdComponent.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/c++/src/H5IdComponent.cpp b/c++/src/H5IdComponent.cpp
index d6dc6ad..93df343 100644
--- a/c++/src/H5IdComponent.cpp
+++ b/c++/src/H5IdComponent.cpp
@@ -34,7 +34,6 @@ bool IdComponent::H5dontAtexit_called = false;
//--------------------------------------------------------------------------
// Function: IdComponent::incRefCount
///\brief Increment reference counter for a given id.
-// Programmer Binh-Minh Ribler - May 2005
//--------------------------------------------------------------------------
void
IdComponent::incRefCount(const hid_t obj_id) const
@@ -47,7 +46,6 @@ IdComponent::incRefCount(const hid_t obj_id) const
//--------------------------------------------------------------------------
// Function: IdComponent::incRefCount
///\brief Increment reference counter for the id of this object.
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
void
IdComponent::incRefCount() const
@@ -58,7 +56,6 @@ IdComponent::incRefCount() const
//--------------------------------------------------------------------------
// Function: IdComponent::decRefCount
///\brief Decrement reference counter for a given id.
-// Programmer Binh-Minh Ribler - May 2005
// Modification:
// Added the check for ref counter to give a little more info
// on why H5Idec_ref fails in some cases - BMR 5/19/2005
@@ -78,7 +75,6 @@ IdComponent::decRefCount(const hid_t obj_id) const
//--------------------------------------------------------------------------
// Function: IdComponent::decRefCount
///\brief Decrement reference counter for the id of this object.
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
void
IdComponent::decRefCount() const
@@ -90,7 +86,6 @@ IdComponent::decRefCount() const
// Function: IdComponent::getCounter
///\brief Returns the reference counter for a given id.
///\return Reference count
-// Programmer Binh-Minh Ribler - May 2005
//--------------------------------------------------------------------------
int
IdComponent::getCounter(const hid_t obj_id) const
@@ -109,7 +104,6 @@ IdComponent::getCounter(const hid_t obj_id) const
// Function: IdComponent::getCounter
///\brief Returns the reference counter for the id of this object.
///\return Reference count
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
int
IdComponent::getCounter() const
@@ -129,7 +123,6 @@ IdComponent::getCounter() const
/// \li \c H5I_ATTR
/// \li or \c H5I_BADID, if no valid type can be determined or the
/// input object id is invalid.
-// Programmer Binh-Minh Ribler - Jul, 2005
//--------------------------------------------------------------------------
H5I_type_t
IdComponent::getHDFObjType(const hid_t obj_id)
@@ -156,7 +149,6 @@ IdComponent::getHDFObjType(const hid_t obj_id)
/// \li \c H5I_ATTR
/// \li or \c H5I_BADID, if no valid type can be determined or the
/// input object id is invalid.
-// Programmer Binh-Minh Ribler - Mar, 2014
//--------------------------------------------------------------------------
H5I_type_t
IdComponent::getHDFObjType() const
@@ -184,7 +176,6 @@ IdComponent::getHDFObjType() const
/// \li \c H5I_ERROR_CLASS
/// \li \c H5I_ERROR_MSG
/// \li \c H5I_ERROR_STACK
-// Programmer Binh-Minh Ribler - Feb, 2017
//--------------------------------------------------------------------------
hsize_t
IdComponent::getNumMembers(H5I_type_t type)
@@ -204,7 +195,6 @@ IdComponent::getNumMembers(H5I_type_t type)
///\par Description
/// A valid ID is one that is in use and has an application
/// reference count of at least 1.
-// Programmer Binh-Minh Ribler - Mar 1, 2017
//--------------------------------------------------------------------------
bool
IdComponent::isValid(hid_t an_id)
@@ -239,7 +229,6 @@ IdComponent::isValid(hid_t an_id)
/// \li \c H5I_ERROR_CLASS
/// \li \c H5I_ERROR_MSG
/// \li \c H5I_ERROR_STACK
-// Programmer Binh-Minh Ribler - Feb, 2017
//--------------------------------------------------------------------------
bool
IdComponent::typeExists(H5I_type_t type)
@@ -270,7 +259,6 @@ IdComponent::typeExists(H5I_type_t type)
// 2010/5/9 - BMR
// Removed close() and incRefCount() because setId/p_setId takes
// care of close() and setId takes care incRefCount().
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
IdComponent &
IdComponent::operator=(const IdComponent &rhs)
@@ -298,7 +286,6 @@ IdComponent::operator=(const IdComponent &rhs)
// Description:
// p_setId ensures that the current valid id of this object is
// properly closed before resetting the object's id to the new id.
-// Programmer Binh-Minh Ribler - 2000
// Modification
// 2008/7/23 - BMR
// Changed all subclasses' setId to p_setId and put back setId
@@ -323,7 +310,6 @@ IdComponent::setId(const hid_t new_id)
//--------------------------------------------------------------------------
// Function: IdComponent destructor
///\brief Noop destructor.
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
IdComponent::~IdComponent()
{
@@ -345,7 +331,6 @@ IdComponent::~IdComponent()
/// where the failure occurs. The class-name is provided by
/// fromClass(). This string will be used by a base class when
/// an exception is thrown.
-// Programmer Binh-Minh Ribler - Aug 6, 2005
//--------------------------------------------------------------------------
H5std_string
IdComponent::inMemFunc(const char *func_name) const
@@ -359,7 +344,6 @@ IdComponent::inMemFunc(const char *func_name) const
//--------------------------------------------------------------------------
// Function: IdComponent default constructor - private
///\brief Default constructor.
-// Programmer Binh-Minh Ribler - 2000
//--------------------------------------------------------------------------
IdComponent::IdComponent()
{
@@ -381,7 +365,6 @@ IdComponent::IdComponent()
// September 2017
// This function should be moved to H5Location now that Attribute
// inherits from H5Location.
-// Programmer Binh-Minh Ribler - Jul, 2004
//--------------------------------------------------------------------------
H5std_string
IdComponent::p_get_file_name() const
@@ -427,7 +410,6 @@ IdComponent::p_get_file_name() const
// Purpose Verifies that the given id is a valid id so it can be passed
// into an H5I C function.
// Return true if id is valid, false, otherwise
-// Programmer Binh-Minh Ribler - May, 2005
//--------------------------------------------------------------------------
bool
IdComponent::p_valid_id(const hid_t obj_id)