$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-09-27 00:42:32
Li Lirong wrote:
> Hi,
> Do we have serialization support for boost::any? If not, how is it
> possible to serialize boost::any?
Good question. Robert, is it possible to place BOOST_CLASS_EXPORT inside
class definition, so that I can write something like that:
class any_base {};
template<class T>
class any_value_holder : public any_base
{
.......
BOOST_CLASS_EXPORT(any_value_holder);
};
and have BOOST_CLASS_EXPORT run for each instantiation of any_value_holder?
- Volodya