]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/fstream
Patches from Erik Hofman for SGI compatibility:
[simgear.git] / simgear / compatibility / fstream
1
2 #ifndef __SG_FSTREAM
3 #define __SG_FSTREAM 1
4
5 # include <fstream.h>
6 # include <iostream>
7
8 # if defined(sgi) && !defined(__GNUC__)
9
10   namespace std {
11     using ::fstream;
12   };
13
14 # endif
15
16 #endif // !__SG_FSTREAM
17