27 Sep
2005
27 Sep
'05
5:42 a.m.
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