]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/fstream
A first attempt at making the clouds3d endian aware. Almost there.
[simgear.git] / simgear / compatibility / fstream
1
2 #ifndef __SG_FSTREAM
3 #define __SG_FSTREAM 1
4
5 # if defined(sgi) && !defined(__GNUC__)
6
7 # include <fstream.h>
8
9   namespace std {
10     using ::fstream;
11     using ::ifstream;
12     using ::ofstream;
13   };
14
15
16 # endif
17
18 #endif // !__SG_FSTREAM
19