summaryrefslogtreecommitdiffstats
path: root/c++/test/th5s.cpp
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-03-17 16:41:02 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-03-17 16:41:02 (GMT)
commite12c0353503aa10aac9eb085011339402f30aaeb (patch)
tree9674b5adba402dfe406149811c72e79869382f8f /c++/test/th5s.cpp
parent3ca85400267bd5e3b965cf1e4e8abafae0d247ef (diff)
downloadhdf5-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.cpp5
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"