]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/MIPSpro721/iostream
fix SGPagedLOD change for 2.8.3
[simgear.git] / simgear / compatibility / MIPSpro721 / iostream
1
2 #ifndef __SG_IOSTREAM
3 #define __SG_IOSTREAM 1
4
5 # if defined(sgi) && !defined(__GNUC__)
6
7 # include <fstream>
8 # include <iostream.h>
9
10   class ios_base : public ios {
11   public:
12
13     typedef int  openmode;
14     typedef int  seekdir;
15
16     enum { binary = 0 };
17   };
18
19   namespace std {
20     using ::cin;
21     using ::cout;
22     using ::cerr;
23     using ::clog;
24     using ::endl;
25
26     using ::ios;
27     using ::ios_base;
28     using ::iostream;
29     using ::istream;
30     using ::ostream;
31
32     using ::dec;
33     using ::oct;
34     using ::hex;
35
36     enum  { skipws=ios::skipws,
37             left=ios::left, right=ios::right, internal=ios::internal,
38             showbase=ios::showbase, showpoint=ios::showpoint,
39             uppercase=ios::uppercase, showpos=ios::showpos,
40             scientific=ios::scientific, fixed=ios::fixed,
41             unitbuf=ios::unitbuf, stdio=ios::stdio
42 #if _BOOL && __EDG_ABI_COMPATIBILITY_VERSION>227 /* bool support */
43             ,boolalpha=ios::boolalpha
44 #endif /* bool support */
45           };
46
47   };
48
49 # endif
50
51 #endif // !__SG_IOSTREAM
52