summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Cpp.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2000-12-13 13:06:57 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2000-12-13 13:06:57 (GMT)
commit1aec17231d77f4e4e2bc924b2aefd4541d046cca (patch)
tree1ebe4bc4fc5e70bd5a4a611f2d6fcdce488f1d9b /c++/src/H5Cpp.h
parent9cbeb3c53f0d34d8e2b7cca0fbaab8ec55179066 (diff)
downloadhdf5-1aec17231d77f4e4e2bc924b2aefd4541d046cca.zip
hdf5-1aec17231d77f4e4e2bc924b2aefd4541d046cca.tar.gz
hdf5-1aec17231d77f4e4e2bc924b2aefd4541d046cca.tar.bz2
[svn-r3122] Purpose:
Fix and improve Description: - Put functions that are common to H5File and Group into a prototype class, CommonFG. I didn't do that before because of the fear of the consequences of multiple inheritance, since H5File and Group already inherit from different super classes. I recently read a C++ book and learned to use MI more safely. This change reduced some more of code redundancy. - Added missing const to some function parameters Platforms tested: Solaris/CC 5.0 (arabica)
Diffstat (limited to 'c++/src/H5Cpp.h')
-rw-r--r--c++/src/H5Cpp.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/c++/src/H5Cpp.h b/c++/src/H5Cpp.h
index 6188b67..a8409b5 100644
--- a/c++/src/H5Cpp.h
+++ b/c++/src/H5Cpp.h
@@ -23,6 +23,7 @@
#include "H5StrType.h"
#include "H5CompType.h"
#include "H5DataSet.h"
+#include "H5CommonFG.h"
#include "H5Group.h"
#include "H5File.h"
#include "H5Library.h"