[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
This commit is contained in:
Bill Wendling 2003-03-17 11:41:02 -05:00
parent 3ca8540026
commit e12c035350
4 changed files with 21 additions and 0 deletions

View File

@ -26,7 +26,12 @@
***************************************************************************/
#ifdef OLD_HEADER_FILENAME
#include <iostream.h>
#else
#include <iostream>
#endif
#include "H5Cpp.h"
#include "h5test.h"
#include "testhdf5.h"

View File

@ -53,7 +53,13 @@ int Verbosity;
// Use C version of the header file testhdf5.h instead of re-coding it
#include "testhdf5.h"
#ifdef OLD_HEADER_FILENAME
#include <iostream.h>
#else
#include <iostream>
#endif
#include "H5Cpp.h"
#ifndef H5_NO_NAMESPACE

View File

@ -25,7 +25,12 @@
***************************************************************************/
#ifdef OLD_HEADER_FILENAME
#include <iostream.h>
#else
#include <iostream>
#endif
#include "H5Cpp.h"
#include "testhdf5.h"

View File

@ -21,7 +21,12 @@
***************************************************************************/
#ifdef OLD_HEADER_FILENAME
#include <iostream.h>
#else
#include <iostream>
#endif
#include "H5Cpp.h"
#include "testhdf5.h"