From 96e92e0a4c697e4ce08bdcc289d907d41d9aad0a Mon Sep 17 00:00:00 2001 From: Binh-Minh Ribler Date: Fri, 19 Aug 2005 17:12:22 -0500 Subject: [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 --- c++/examples/chunks.cpp | 4 ++++ c++/examples/compound.cpp | 4 ++++ c++/examples/extend_ds.cpp | 4 ++++ c++/examples/h5group.cpp | 4 ++++ c++/examples/readdata.cpp | 4 ++++ c++/examples/writedata.cpp | 4 ++++ 6 files changed, 24 insertions(+) diff --git a/c++/examples/chunks.cpp b/c++/examples/chunks.cpp index b6db2ad..bbaf5b1 100644 --- a/c++/examples/chunks.cpp +++ b/c++/examples/chunks.cpp @@ -28,6 +28,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" ); 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" ); 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" ); diff --git a/c++/examples/h5group.cpp b/c++/examples/h5group.cpp index a69f2f4..7c931e3 100644 --- a/c++/examples/h5group.cpp +++ b/c++/examples/h5group.cpp @@ -31,6 +31,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( "Group.h5" ); diff --git a/c++/examples/readdata.cpp b/c++/examples/readdata.cpp index 5a1ec51..70f3727 100644 --- a/c++/examples/readdata.cpp +++ b/c++/examples/readdata.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( "SDS.h5" ); diff --git a/c++/examples/writedata.cpp b/c++/examples/writedata.cpp index f50927d..94c952b 100644 --- a/c++/examples/writedata.cpp +++ b/c++/examples/writedata.cpp @@ -32,6 +32,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( "Select.h5" ); -- cgit v0.12