summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Location.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2013-10-14 22:05:22 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2013-10-14 22:05:22 (GMT)
commit26713999ba25815466ccc8368322f340c4c45119 (patch)
tree2f11b788d7e74cebbfe1ae3dd249d2a2d044ae26 /c++/src/H5Location.h
parent3cb8591786fccaa5b06dd535aa004dceb3bbcc50 (diff)
downloadhdf5-26713999ba25815466ccc8368322f340c4c45119.zip
hdf5-26713999ba25815466ccc8368322f340c4c45119.tar.gz
hdf5-26713999ba25815466ccc8368322f340c4c45119.tar.bz2
[svn-r24290] Description:
- Added a lot of documentation to classes for Reference Manual. - Fixed some format inconsistencies Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers
Diffstat (limited to 'c++/src/H5Location.h')
-rw-r--r--c++/src/H5Location.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/c++/src/H5Location.h b/c++/src/H5Location.h
index 3aadd50..db22bff 100644
--- a/c++/src/H5Location.h
+++ b/c++/src/H5Location.h
@@ -19,10 +19,6 @@
#include "H5Classes.h" // constains forward class declarations
-// H5Location is an abstract class. It provides a collection of wrappers
-// of C functions which take location IDs. Most of these were in H5Object
-// but are now moved here for H5File's access.
-
#ifndef H5_NO_NAMESPACE
namespace H5 {
#endif
@@ -41,8 +37,15 @@ class UserData4Aiterate { // user data for attribute iteration
H5Location* location;
};
-// An H5Location can be a file, group, dataset, or committed datatype.
+/*! \class H5Location
+ \brief H5Location is an abstract base class, added in version 1.8.12.
+ It provides a collection of wrappers for the C functions that take a
+ location identifier to specify the HDF5 object. The location identifier
+ can be either file, group, dataset, or named datatype.
+*/
+// Most of these methods were in H5Object but are now moved here because
+// a location can be a file, group, dataset, or named datatype. -BMR, 2013-10-1
class H5_DLLCPP H5Location : public IdComponent {
public:
// Creates an attribute for the specified object at this location
@@ -154,11 +157,11 @@ class H5_DLLCPP H5Location : public IdComponent {
// Retrieves the type of object that an object reference points to.
H5O_type_t p_get_ref_obj_type(void *ref, H5R_type_t ref_type) const;
+#endif // DOXYGEN_SHOULD_SKIP_THIS
+
// Noop destructor.
virtual ~H5Location();
-#endif // DOXYGEN_SHOULD_SKIP_THIS
-
}; /* end class H5Location */
#ifndef H5_NO_NAMESPACE