
8 Aug
2008
8 Aug
'08
8:46 a.m.
On Fri, Aug 8, 2008 at 1:28 PM, Alexander Dong Back Kim <alexdbkim@gmail.com> wrote:
What I want to ask here is how I can avoid to create a file and fill the data array instead by using boost serialization? Any comments will be appreciated.
Try using a stringbuf, then wrap it in an std::ostream, which you then use to initialize the archive: std::stringbuf buffer; std::ostream stream(&buffer); text_oarchive archive(stream); HTH -- Dean Michael C. Berris Software Engineer, Friendster, Inc.