summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.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/H5DataType.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/H5DataType.h')
-rw-r--r--c++/src/H5DataType.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 4071a2c..ca04548 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -14,6 +14,9 @@
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
+// Class DataType inherits from H5Object and has several subclasses for
+// specific HDF5 data types.
+
#ifndef __H5DataType_H
#define __H5DataType_H
@@ -21,6 +24,13 @@
namespace H5 {
#endif
+/*! \class DataType
+ \brief Class DataType provides generic operations on HDF5 datatypes.
+
+ DataType inherits from H5Object because a named datatype is an HDF5
+ object and is a base class of ArrayType, AtomType, CompType, EnumType,
+ and VarLenType.
+*/
class H5_DLLCPP DataType : public H5Object {
public:
// Creates a datatype given its class and size
@@ -47,10 +57,8 @@ class H5_DLLCPP DataType : public H5Object {
// Commits a transient datatype to a file; this datatype becomes
// a named datatype which can be accessed from the location.
- void commit( H5File& loc, const char* name);
- void commit( H5File& loc, const H5std_string& name);
- void commit( H5Object& loc, const char* name);
- void commit( H5Object& loc, const H5std_string& name);
+ void commit( H5Location& loc, const char* name);
+ void commit( H5Location& loc, const H5std_string& name);
// Determines whether this datatype is a named datatype or
// a transient datatype.