$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Bill Lear (rael_at_[hidden])
Date: 2005-01-25 00:51:32
On Monday, January 24, 2005 at 15:46:47 (-0800) Robert Ramey writes:
>...
>in your case. try changing the name to remove the < and > characters and
>see if that helps. try:
>
>ar & boost::serialization::make_nvp("vectorT",
>boost::serialization::base_object<name >(*this));
Works indeed. For those who may be following this, I tried the
following, verbatim:
ar & boost::serialization::make_nvp("vectorT",
boost::serialization::base_object<std::vector<T> >(*this))
...
Thanks for your help.
Bill