summaryrefslogtreecommitdiffstats
path: root/c++/examples/compound.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/compound.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/compound.cpp')
-rw-r--r--c++/examples/compound.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/c++/examples/compound.cpp b/c++/examples/compound.cpp
index dfbd544..17d8f20 100644
--- a/c++/examples/compound.cpp
+++ b/c++/examples/compound.cpp
@@ -29,6 +29,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( "SDScompound.h5" );