Corrected C++ part.

This commit is contained in:
Benedikt Oswald
2007-12-19 08:32:06 +00:00
parent 1dd6e487be
commit 3a350f975d
2 changed files with 12 additions and 12 deletions
+10 -10
View File
@@ -32,24 +32,24 @@
/** include proprietary header files */
#include <H5Fed.hh>
#include "H5Fed.hh"
/** \brief make the C API functions available so that
* we can used them in the implementation of the H5Fed class
* member functions implementations.
*/
extern "C"
{
#include <H5Fed.h>
}
//extern "C"
//{
// #include "../../H5Fed.h"
//}
/** activate namespaces */
using namespace H5Fed;
using namespace std;
namespace H5Fed
{
/*!
\defgroup h5fed_cpp_api H5Fed CPP API
*/
@@ -73,7 +73,7 @@ H5Fed::H5Fed(std::string filename)
/** \brief implement constructor */
~H5Fed::H5Fed()
H5Fed::~H5Fed()
{
/** initialize internal variables */
filename_.erase();
@@ -140,7 +140,7 @@ H5FED_RETURN_CODE H5Fed::closeFile()
return(OKCODE);
}
}
+2 -2
View File
@@ -78,7 +78,7 @@ namespace H5Fed
private:
/** book keeping */
std::string filename_; /** \brief Name of H5Fed file to be accessed */
std::string filename_; /** \brief Name of H5Fed file to be accessed */
@@ -88,4 +88,4 @@ namespace H5Fed
};
}
#endif /** H5FED_HH */
#endif /** H5FED_HH */