Patch level :4.0

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :ostrstream stream(... per poter compilare


git-svn-id: svn://10.65.10.50/trunk@15873 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2007-12-13 16:17:29 +00:00
parent ad851622d8
commit 3354d8ddac

View File

@ -321,7 +321,13 @@ bool TPostman::dispatch_transaction(const TRectype& rec,
TXmlItem item;
TSocketClient socket;
char * buf = new char[1024 * 256];
strstream stream(buf, 1024 * 256);
#ifdef WIN32
ostrstream stream(buf, 1024 * 256);
#else
ostringstream stream(buf);
#endif
bool ok = true;
item.SetTag("Campo");