summaryrefslogtreecommitdiffstats
path: root/c++/src/H5File.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/H5File.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/H5File.h')
-rw-r--r--c++/src/H5File.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h
index 1904bdb..22bb6c5 100644
--- a/c++/src/H5File.h
+++ b/c++/src/H5File.h
@@ -18,11 +18,10 @@
#define __H5File_H
namespace H5 {
-
/*! \class H5File
\brief Class H5File represents an HDF5 file.
- It inherits from H5Location and CommonFG.
+ Inheritance: CommonFG/H5Location -> IdComponent
*/
class H5_DLLCPP H5File : public H5Location, public CommonFG {
public:
@@ -118,6 +117,7 @@ class H5_DLLCPP H5File : public H5Location, public CommonFG {
// constructors taking a string or a char*
void p_get_file( const char* name, unsigned int flags, const FileCreatPropList& create_plist, const FileAccPropList& access_plist );
-};
-}
+}; // end of H5File
+} // namespace H5
+
#endif // __H5File_H