diff options
Diffstat (limited to 'c++/examples/readdata.cpp')
-rw-r--r-- | c++/examples/readdata.cpp | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/c++/examples/readdata.cpp b/c++/examples/readdata.cpp index b615a40..74b02f9 100644 --- a/c++/examples/readdata.cpp +++ b/c++/examples/readdata.cpp @@ -24,20 +24,12 @@ #else #include <iostream> #endif -#include <string> - -#ifndef H5_NO_NAMESPACE -#ifndef H5_NO_STD - using std::cout; - using std::endl; -#endif // H5_NO_STD -#endif +using std::cout; +using std::endl; +#include <string> #include "H5Cpp.h" - -#ifndef H5_NO_NAMESPACE - using namespace H5; -#endif +using namespace H5; const H5std_string FILE_NAME( "SDS.h5" ); const H5std_string DATASET_NAME( "IntArray" ); |