diff options
Diffstat (limited to 'c++/src/H5Location.cpp')
-rw-r--r-- | c++/src/H5Location.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/c++/src/H5Location.cpp b/c++/src/H5Location.cpp index 91de0f5..a3e6738 100644 --- a/c++/src/H5Location.cpp +++ b/c++/src/H5Location.cpp @@ -26,6 +26,7 @@ #include "H5OcreatProp.h" #include "H5DcreatProp.h" #include "H5DxferProp.h" +#include "H5LaccProp.h" #include "H5Location.h" #include "H5Object.h" #include "H5DataType.h" @@ -76,7 +77,7 @@ H5Location::H5Location() : IdComponent() {} #endif // DOXYGEN_SHOULD_SKIP_THIS - /* //-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- // Function: H5Location::exists ///\brief Checks if a link of a given name exists in a location ///\param name - IN: Searched name @@ -96,11 +97,9 @@ bool H5Location::exists(const char* name, const LinkAccPropList& lapl) const { throwException("exists", "H5Lexists failed"); } - return false; // warning: control reaches end of non-void function } - */ - /* //-------------------------------------------------------------------------- +//-------------------------------------------------------------------------- // Function: H5Location::exists ///\brief Checks if a link of a given name exists in a location ///\param name - IN: Searched name @@ -113,7 +112,6 @@ bool H5Location::exists(const H5std_string& name, const LinkAccPropList& lapl) c { return(exists(name.c_str(), lapl)); } - */ //-------------------------------------------------------------------------- // Function: H5Location::flush |