diff options
Diffstat (limited to 'c++/src/H5Object.h')
-rw-r--r-- | c++/src/H5Object.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/src/H5Object.h b/c++/src/H5Object.h index fdc6c76..6b0d0fd 100644 --- a/c++/src/H5Object.h +++ b/c++/src/H5Object.h @@ -76,6 +76,10 @@ class H5_DLLCPP H5Object : public IdComponent { void removeAttr( const char* name ) const; void removeAttr( const string& name ) const; + // Renames the attribute to a new name. + void renameAttr(const char* oldname, const char* newname) const; + void renameAttr(const string& oldname, const string& newname) const; + // Copy constructor: makes copy of an H5Object object. H5Object(const H5Object& original); |