diff options
Diffstat (limited to 'c++/src/H5CommonFG.h')
-rw-r--r-- | c++/src/H5CommonFG.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h index 075aca2..7541627 100644 --- a/c++/src/H5CommonFG.h +++ b/c++/src/H5CommonFG.h @@ -47,9 +47,14 @@ class H5_DLLCPP CommonFG { DataSet openDataSet(const string& name) const; // Retrieves comment for the HDF5 object specified by its name. + string getComment(const string& name) const; string getComment(const char* name, size_t bufsize) const; string getComment(const string& name, size_t bufsize) const; + // Removes the comment for the HDF5 object specified by its name. + void removeComment(const char* name) const; + void removeComment(const string& name) const; + // Sets the comment for an HDF5 object specified by its name. void setComment(const char* name, const char* comment) const; void setComment(const string& name, const string& comment) const; |