$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] Serialization Question
From: Paul Dugas (paul_at_[hidden])
Date: 2010-06-08 17:34:45
I'm looking into recording some data collected by one of my programs
into rotating files. Something like so:
ofstream ofs;
boost::archive::text_oarchive oa(ofs)
size_t rotate = 0;
for(;;)
{
foo_t foo = get_some_foo();
if (!rotate)
{
ofs.open(some_clever_new_filename);
// attach oa again?
rotate = 1000;
}
oa << foo;
if (!--rotate)
{
ofs.close();
// detach oa?
}
}
Do I need to do anything to detach or re-attach the oarchive?
Paul