]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/iostream
Added missing Makefile.am from Erik Hofman.
[simgear.git] / simgear / compatibility / iostream
1
2 #ifndef __SG_IOSTREAM
3 #define __SG_IOSTREAM 1
4
5 # include <iostream.h>
6
7 #if defined(sgi) && !defined(__GNUC__)
8
9   class ios_base : public ios {
10   public:
11
12     typedef int  openmode;
13     typedef int  seekdir;
14
15     enum { binary = 0 };
16   };
17
18   namespace std {
19     using ::cin;
20     using ::cout;
21     using ::cerr;
22     using ::clog;
23     using ::ios_base;
24   };
25
26 #endif
27
28 #endif // !__SG_IOSTREAM
29