1 /*****************************************************************************/
2 /* Software Testing Automation Framework (STAF)                              */
3 /* (C) Copyright IBM Corp. 2001                                              */
4 /*                                                                           */
5 /* This software is licensed under the Eclipse Public License (EPL) V1.0.    */
6 /*****************************************************************************/
7 
8 #ifndef STAF_iostream
9 #define STAF_iostream
10 
11 #ifdef STAF_Config_NoSTDIOStreamSupport
12 
13   #include <iostream.h>
14   #include <iomanip.h>
15 
16 #else
17 
18   #include <iostream>
19   #include <iomanip>
20 
21   using std::cin;
22   using std::cout;
23   using std::cerr;
24   using std::endl;
25   using std::flush;
26   using std::dec;
27   using std::hex;
28   using std::ostream;
29   using std::istream;
30   using std::setw;
31   using std::setfill;
32 
33 #endif
34 
35 
36 #endif
37