summaryrefslogtreecommitdiffstats
path: root/c++/src/H5File.h
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-22 20:39:44 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-03-22 20:39:44 (GMT)
commit67be45610fd450909038afea54f79e6a91c458cf (patch)
tree374bb6c2c7e968e2bf8756c52eb2eb20f0a61612 /c++/src/H5File.h
parent958a762dd16bac9a1c5a7a2c594adce6758f81f4 (diff)
downloadhdf5-67be45610fd450909038afea54f79e6a91c458cf.zip
hdf5-67be45610fd450909038afea54f79e6a91c458cf.tar.gz
hdf5-67be45610fd450909038afea54f79e6a91c458cf.tar.bz2
[svn-r24867] Description:
- Added a null terminator to the comment returned from the C call, in getComment methods - Some minor cleanup Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) Linux/64 2.6 (platypus)/PGI compilers
Diffstat (limited to 'c++/src/H5File.h')
-rw-r--r--c++/src/H5File.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/c++/src/H5File.h b/c++/src/H5File.h
index 5fdbcdc..694d688 100644
--- a/c++/src/H5File.h
+++ b/c++/src/H5File.h
@@ -76,7 +76,14 @@ class H5_DLLCPP H5File : public H5Location, public CommonFG {
// Reopens this file.
void reOpen(); // added for better name
- void reopen();
+
+#ifndef DOXYGEN_SHOULD_SKIP_THIS
+ void reopen(); // obsolete in favor of reOpen()
+
+ // Gets the file id
+ virtual hid_t getLocId() const;
+
+#endif // DOXYGEN_SHOULD_SKIP_THIS
///\brief Returns this class name.
virtual H5std_string fromClass () const { return("H5File"); }
@@ -84,9 +91,6 @@ class H5_DLLCPP H5File : public H5Location, public CommonFG {
// Throw file exception.
virtual void throwException(const H5std_string& func_name, const H5std_string& msg) const;
- // Gets the file id
- virtual hid_t getLocId() const;
-
// Default constructor
H5File();