summaryrefslogtreecommitdiffstats
path: root/c++/examples/extend_ds.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2005-08-19 22:12:22 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2005-08-19 22:12:22 (GMT)
commit96e92e0a4c697e4ce08bdcc289d907d41d9aad0a (patch)
treeee14727557de176eb0448828ae617737c6a04bd4 /c++/examples/extend_ds.cpp
parent3ca7a17507b0b18a35fc01a972d852ae5d567502 (diff)
downloadhdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.zip
hdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.tar.gz
hdf5-96e92e0a4c697e4ce08bdcc289d907d41d9aad0a.tar.bz2
[svn-r11274] Purpose: Additional code improvement
Description: Forgot to modify the examples for the "using" declaration changes in the library. Added "using" declaration appropriately. Platforms tested: Linux 2.4 (heping) - very minor
Diffstat (limited to 'c++/examples/extend_ds.cpp')
-rw-r--r--c++/examples/extend_ds.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/examples/extend_ds.cpp b/c++/examples/extend_ds.cpp
index 614a2b1..4913b28 100644
--- a/c++/examples/extend_ds.cpp
+++ b/c++/examples/extend_ds.cpp
@@ -30,6 +30,10 @@
#ifndef H5_NO_NAMESPACE
using namespace H5;
+#ifndef H5_NO_STD
+ using std::cout;
+ using std::endl;
+#endif // H5_NO_STD
#endif
const string FILE_NAME( "SDSextendible.h5" );