diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-12-03 12:28:55 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2005-12-03 12:28:55 (GMT) |
commit | 4620776d72dc398dd134f4b266a38350d6cb7f60 (patch) | |
tree | 202d9e4e301c78bd8dd5128c288a31d34adfba92 /c++/examples/create.cpp | |
parent | 2b411792801f981a43701e390f072a37f8a81303 (diff) | |
download | hdf5-4620776d72dc398dd134f4b266a38350d6cb7f60.zip hdf5-4620776d72dc398dd134f4b266a38350d6cb7f60.tar.gz hdf5-4620776d72dc398dd134f4b266a38350d6cb7f60.tar.bz2 |
[svn-r11757] Purpose: Example code improvement
Description:
Improved the use of std members.
Platforms tested:
Linux 2.4 (heping)
SunOS 5.8 64-bit (sol)
Linux 2.4 w/PGI (colonelk)
Diffstat (limited to 'c++/examples/create.cpp')
-rw-r--r-- | c++/examples/create.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/c++/examples/create.cpp b/c++/examples/create.cpp index de7dcc6..85afc89 100644 --- a/c++/examples/create.cpp +++ b/c++/examples/create.cpp @@ -16,13 +16,19 @@ * This example writes a dataset to a new HDF5 file. */ -#include <string> - #ifdef OLD_HEADER_FILENAME #include <iostream.h> #else #include <iostream> #endif +#include <string> + +#ifndef H5_NO_NAMESPACE +#ifndef H5_NO_STD + using std::string; +#endif // H5_NO_STD +#endif + #include "H5Cpp.h" #ifndef H5_NO_NAMESPACE |