]> git.mxchange.org Git - simgear.git/blob - simgear/compatibility/MIPSpro721/sstream
Revert "Use simgear internal stuff for the singleton class."
[simgear.git] / simgear / compatibility / MIPSpro721 / sstream
1
2 #ifndef __SG_SSTREAM
3 #define __SG_SSTREAM 1
4
5 # include <iostream>
6 # include <strstream>
7 # include <string>
8
9 namespace std {
10
11    class ostringstream : public ostrstream {
12    public:
13       std::string str() {  return string(ostrstream::str()); }
14    };
15
16
17    typedef istrstream istringstream;
18
19 };
20
21 #endif // !__SG_SSTREAM
22