summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-08-25 17:07:04 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-08-25 17:07:04 (GMT)
commit883a235d5ca81770228c5cb5f9d162afda0b411f (patch)
tree7c64b4a99caa417d0256f7c190b0c3075c5e4304 /c++/src/H5Location.cpp
parentf4c4ab678b1ac9919d561eae426941551a15f832 (diff)
downloadhdf5-883a235d5ca81770228c5cb5f9d162afda0b411f.zip
hdf5-883a235d5ca81770228c5cb5f9d162afda0b411f.tar.gz
hdf5-883a235d5ca81770228c5cb5f9d162afda0b411f.tar.bz2
Miscellaneous improvements (cont.)
Description: Put back H5Location::getNumObjs and marked as deprecated in favor of Group::getNumObjs. Platforms tested: Linux/32 2.6 (jam) Darwin (osx1010test)
Diffstat (limited to 'c++/src/H5Location.cpp')
-rw-r--r--c++/src/H5Location.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp
index a81e300..9f2d7d5 100644
--- a/c++/src/H5Location.cpp
+++ b/c++/src/H5Location.cpp
@@ -1282,6 +1282,23 @@ int H5Location::iterateElems(const H5std_string& name, int *idx, H5G_iterate_t o
#endif /* H5_NO_DEPRECATED_SYMBOLS */
//--------------------------------------------------------------------------
+// Function: H5Location::getNumObjs
+///\brief Deprecated - moved to H5::Group in 1.10.2.
+///\return Deprecated
+///\exception Deprecated
+// Programmer Binh-Minh Ribler - January, 2003
+//--------------------------------------------------------------------------
+hsize_t H5Location::getNumObjs() const
+{
+ H5G_info_t ginfo; // Group information
+
+ herr_t ret_value = H5Gget_info(getId(), &ginfo);
+ if(ret_value < 0)
+ throwException("getNumObjs", "H5Gget_info failed");
+ return (ginfo.nlinks);
+}
+
+//--------------------------------------------------------------------------
// Function: H5Location::getObjnameByIdx
///\brief Returns the name of an object in this group, given the
/// object's index.