Alexander Nedotsukov:
I just met a couple of warnings about depricated headers beeng used. Please take a look at patch (against today cvs) attached wich does strstream -> stringstream migration. I hope you found it usefull.
This commit is contained in:
parent
8c129e8470
commit
dc5a58fdcf
3 changed files with 5 additions and 10 deletions
|
@ -34,7 +34,6 @@
|
|||
#include <stdlib.h> // atoi() atof()
|
||||
|
||||
#include STL_STRING
|
||||
#include STL_STRSTREAM
|
||||
|
||||
#include <simgear/debug/logstream.hxx>
|
||||
#include <simgear/io/iochannel.hxx>
|
||||
|
@ -49,7 +48,6 @@
|
|||
|
||||
SG_USING_STD(string);
|
||||
SG_USING_STD(cout);
|
||||
SG_USING_STD(istrstream);
|
||||
|
||||
|
||||
bool FGHttpd::open() {
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
#include <stdlib.h> // atoi() atof()
|
||||
|
||||
#include STL_STRING
|
||||
#include STL_STRSTREAM
|
||||
|
||||
#include <simgear/debug/logstream.hxx>
|
||||
#include <simgear/io/iochannel.hxx>
|
||||
|
@ -47,8 +46,6 @@
|
|||
#include "jpg-httpd.hxx"
|
||||
|
||||
SG_USING_STD(string);
|
||||
SG_USING_STD(cout);
|
||||
SG_USING_STD(istrstream);
|
||||
|
||||
|
||||
bool FGJpegHttpd::open() {
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include <simgear/props/props.hxx>
|
||||
#include <simgear/props/props_io.hxx>
|
||||
|
||||
#include STL_STRSTREAM
|
||||
#include <sstream>
|
||||
|
||||
#include <Main/globals.hxx>
|
||||
#include <Main/viewmgr.hxx>
|
||||
|
@ -43,7 +43,7 @@
|
|||
|
||||
#include "props.hxx"
|
||||
|
||||
SG_USING_STD(strstream);
|
||||
SG_USING_STD(stringstream);
|
||||
SG_USING_STD(ends);
|
||||
|
||||
/**
|
||||
|
@ -211,18 +211,18 @@ PropsChannel::foundTerminator()
|
|||
push( line.c_str() );
|
||||
}
|
||||
} else if ( command == "dump" ) {
|
||||
strstream buf;
|
||||
stringstream buf;
|
||||
if ( tokens.size() <= 1 ) {
|
||||
writeProperties( buf, node );
|
||||
buf << ends; // null terminate the string
|
||||
push( buf.str() );
|
||||
push( buf.str().c_str() );
|
||||
push( getTerminator() );
|
||||
} else {
|
||||
SGPropertyNode *child = node->getNode( tokens[1].c_str() );
|
||||
if ( child ) {
|
||||
writeProperties ( buf, child );
|
||||
buf << ends; // null terminate the string
|
||||
push( buf.str() );
|
||||
push( buf.str().c_str() );
|
||||
push( getTerminator() );
|
||||
} else {
|
||||
node_not_found_error( tokens[1] );
|
||||
|
|
Loading…
Add table
Reference in a new issue