00001
00002
00003
00004
00005
00006 #if !defined(IO_INCL_H)
00007 #define IO_INCL_H
00008
00009 #if !defined(__xlC__)
00010
00011 #include <stdio.h>
00012 #include <iostream>
00013 #include <fstream>
00014 #include <strstream>
00015 #include <iomanip>
00016
00017 #if defined(_MSC_VER)
00018 using namespace std;
00019 #endif
00020
00021 #else
00022
00023 #define SEPARATE_OSTREAM_WITH_ASSIGN
00024
00025 #include <stdio.h>
00026 #include <iostream.h>
00027 #include <fstream.h>
00028 #include <strstream.h>
00029 #include <iomanip.h>
00030
00031 #endif
00032
00033
00034 #endif // !defined(IO_INCL_H)
00035
00036
00037
00038
00039
00040