diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-17 16:41:02 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-03-17 16:41:02 (GMT) |
commit | e12c0353503aa10aac9eb085011339402f30aaeb (patch) | |
tree | 9674b5adba402dfe406149811c72e79869382f8f /c++/test/th5s.cpp | |
parent | 3ca85400267bd5e3b965cf1e4e8abafae0d247ef (diff) | |
download | hdf5-e12c0353503aa10aac9eb085011339402f30aaeb.zip hdf5-e12c0353503aa10aac9eb085011339402f30aaeb.tar.gz hdf5-e12c0353503aa10aac9eb085011339402f30aaeb.tar.bz2 |
[svn-r6484] Purpose:
Bug Fix
Description:
Kelgia needs the old header file format for #includes.
Solution:
Conditionally include the old header file format if
OLD_HEADER_FILENAME is defined.
Platforms tested:
Kelgia
Diffstat (limited to 'c++/test/th5s.cpp')
-rw-r--r-- | c++/test/th5s.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/c++/test/th5s.cpp b/c++/test/th5s.cpp index 7d4bc3f..443b310 100644 --- a/c++/test/th5s.cpp +++ b/c++/test/th5s.cpp @@ -21,7 +21,12 @@ ***************************************************************************/ +#ifdef OLD_HEADER_FILENAME +#include <iostream.h> +#else #include <iostream> +#endif + #include "H5Cpp.h" #include "testhdf5.h" |