theia というライブラリで Reconstruction クラスをシリアライズしたいと考えています。クラス Reconstruction にはシリアル化機能があります。
friend class cereal::access;
template <class Archive>
void serialize(Archive& ar) { // NOLINT
ar(next_track_id_,
next_view_id_,
view_name_to_id_,
views_,
tracks_);
}
既に設定されているシリアライゼーションは、次のように正常に機能します。
Reconstruction estimated_reconstruction;
[...]
std::ofstream output_writer(output_file, std::ios::out | std::ios::binary);
cereal::PortableBinaryOutputArchive output_archive(output_writer);
output_archive(estimated_reconstruction);
しかし、それを XMLOutputArchive に変更すると (必要な #include を追加して)、機能しなくなりました!
Reconstruction estimated_reconstruction;
[...]
std::ofstream output_writer(output_file, std::ios::out);
cereal::XMLOutputArchive output_archive(output_writer);
output_archive(estimated_reconstruction);
エラーは次のとおりです。
[...]
error: static assertion failed: cereal could not find any output serialization functions for the provided type and archive combination.
Types must either have a serialize function, load/save pair, or load_minimal/save_minimal pair (you may not mix these).
Serialize functions generally have the following signature:
template<class Archive>
void serialize(Archive & ar)
{
ar( member1, member2, member3 );
}