I am using boost::variant and boost::serialize in my application. The serialization module has built in support for serializing variants, so:
boost::variant<int,double> u(3.14);
// Do something with u;
// Serialize
oa << u;
works. However, my problem is that the serialization is not robust. Depending on how my application is compiled the elements of the variant may change. Currently the serialization module appears to be simply embedding the index of the 'active' variant type; which is an issue if the variant changed to, say, boost::variant<double,string>.
Can anyone suggest ways of improving this so that the serialization/un-serialization works so as the type that has been serialized is a template parameter of the boost::variant. (So, in the above case boost::variant<int,double> u(3.14) could be un-serialized to a boost::variant<double,std::string>. I am aware this may require me to provide additional information such as a stringified form of the type.