ブーストを使用してマップを XML アーカイブにシリアライズしているとしましょう。マップの型は std::map< long, CMyObject > です。代わりにこのタイプを使用する必要があることに気付きました: std::map< std::string, CMyObject >。この場合、下位互換性をどのように処理しますか? これが私のシリアル化メソッドが今どのように見えるかです:
template<class Archive>
void serialize(Archive & ar, const unsigned int file_version)
{
ar & BOOST_SERIALIZATION_NVP(m_MyMap);
}
void serialize ( std::ostream &out ) const
{
boost::archive::xml_oarchive oa ( out );
oa << boost::serialization::make_nvp ( "MyArchive.xml", *this );
}
void serialize ( std::istream &in )
{
boost::archive::xml_iarchive ia ( in );
ia >> boost::serialization::make_nvp ( "MyArchive.xml", *this );
}
m_MyMap は現在 std::map< long, CMyObject > 型ですが、std::map< std::string, CMyObject > に変更する必要があります。これを処理する最もクリーンな方法は何ですか?