summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2004-07-17 05:27:47 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2004-07-17 05:27:47 (GMT)
commitb79142ca2b750b6d45e636bb138fc947a0b92e3f (patch)
treebc04fa9e6bc134e1d3c7b248cd8668cea5f72d7d /c++
parent0f985ebb0a107f5ab6d6426ca36683263f6d3ba8 (diff)
downloadhdf5-b79142ca2b750b6d45e636bb138fc947a0b92e3f.zip
hdf5-b79142ca2b750b6d45e636bb138fc947a0b92e3f.tar.gz
hdf5-b79142ca2b750b6d45e636bb138fc947a0b92e3f.tar.bz2
[svn-r8895] Purpose: Fixing typos
Description: Class name was left in function prototypes by mistake. Removed it. Platforms tested: HPUX 11.00 (kelgia) Linux 2.4 (eirene)
Diffstat (limited to 'c++')
-rw-r--r--c++/src/H5CommonFG.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/src/H5CommonFG.h b/c++/src/H5CommonFG.h
index eb14c61..9a51015 100644
--- a/c++/src/H5CommonFG.h
+++ b/c++/src/H5CommonFG.h
@@ -115,16 +115,16 @@ class H5_DLLCPP CommonFG {
StrType openStrType(const string& name) const;
// Returns the number of objects in this group.
- hsize_t CommonFG::getNumObjs() const;
+ hsize_t getNumObjs() const;
// Retrieves the name of an object in this group by giving the
// object's index.
- ssize_t CommonFG::getObjnameByIdx(hsize_t idx, string& name, size_t size) const;
+ ssize_t getObjnameByIdx(hsize_t idx, string& name, size_t size) const;
// Returns the type of an object in this group by giving the
// object's index.
- H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx) const;
- H5G_obj_t CommonFG::getObjTypeByIdx(hsize_t idx, string& type_name) const;
+ H5G_obj_t getObjTypeByIdx(hsize_t idx) const;
+ H5G_obj_t getObjTypeByIdx(hsize_t idx, string& type_name) const;
/// For H5File and Group to throw appropriate exception.
virtual void throwException(const string func_name, const string msg) const = 0;