[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
This commit is contained in:
Binh-Minh Ribler 2005-08-19 17:12:22 -05:00
parent 3ca7a17507
commit 96e92e0a4c
6 changed files with 24 additions and 0 deletions

View File

@ -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" );

View File

@ -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" );

View File

@ -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" );

View File

@ -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" );

View File

@ -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" );

View File

@ -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" );