$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Robert Ramey (ramey_at_[hidden])
Date: 2008-04-02 16:54:30
well, I didn't go through the whole thing. But don't anywhere a variant is
being serialized.
Look at test variant.
Try the following:
typedef boost::variant<int,std::string> my_var_t;
typedef std::vector<my_var_t> my_vector_t;
my_vector_t v;
...
ar << v;
Robert Ramey