summaryrefslogtreecommitdiffstats
path: root/c++/src/H5DataType.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-13 05:41:57 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2017-04-13 05:41:57 (GMT)
commitb9ca32f29a59dd0998c649dff64a03ae4d1ab9a7 (patch)
tree4e35a442e01f1d21688088f68cf6d12a390c45e0 /c++/src/H5DataType.h
parentbee3ca742946eff20f64e35048dc00429b99e362 (diff)
downloadhdf5-b9ca32f29a59dd0998c649dff64a03ae4d1ab9a7.zip
hdf5-b9ca32f29a59dd0998c649dff64a03ae4d1ab9a7.tar.gz
hdf5-b9ca32f29a59dd0998c649dff64a03ae4d1ab9a7.tar.bz2
Miscellaneous clean-up: format and comments
Platforms tested: Linux/64 (jelly) - very minor
Diffstat (limited to 'c++/src/H5DataType.h')
-rw-r--r--c++/src/H5DataType.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/c++/src/H5DataType.h b/c++/src/H5DataType.h
index 69e5c6d..3ae97dc 100644
--- a/c++/src/H5DataType.h
+++ b/c++/src/H5DataType.h
@@ -14,20 +14,18 @@
* 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
namespace H5 {
-
/*! \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.
+
+ Inheritance: DataType -> H5Object -> H5Location -> IdComponent
*/
class H5_DLLCPP DataType : public H5Object {
public:
@@ -141,6 +139,8 @@ class H5_DLLCPP DataType : public H5Object {
friend void f_DataType_setId(DataType* dtype, hid_t new_id);
void p_commit(hid_t loc_id, const char* name);
-};
-}
+
+}; // end of DataType
+} // namespace H5
+
#endif // __H5DataType_H