mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
15 lines
No EOL
327 B
C++
15 lines
No EOL
327 B
C++
#include "sstrm.h"
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StringStream ss;
|
|
ss.Put('*');
|
|
ss.Put("ahoj kamarade jak se mas");
|
|
ss.Seek(0);
|
|
DUMP(ss.GetLine());
|
|
LOGHEXDUMP(ss.GetResult(), ss.GetResult().GetCount());
|
|
ss.Seek(0);
|
|
DUMP(ss.GetLine());
|
|
ss.Put("Another one");
|
|
LOGHEXDUMP(ss.GetResult(), ss.GetResult().GetCount());
|
|
} |