我有一個「生成器」類,基本上構造了它的子類。爲了使用這個東西,我簡單地將它分類並傳遞正確的參數來構建我想要構建的對象。我想序列化這些東西,因爲所有的數據都在基礎中,所以沒有很好的理由針對每個子類。以下是我已經有了爲例:boost.serialization - 免費版本和基類實現
#include <boost/serialization/serialization.hpp>
template < typename T >
struct test_base
{
// works...
//template < typename Archive >
//void serialize(Archive &, unsigned int const)
// {
//}
};
template < typename T >
void f(test_base<T> const&) {}
struct test_derived : test_base<int>
{
};
namespace boost { namespace serialization {
template < typename Archive, typename T >
void serialize(Archive &, test_base<T> &, unsigned int const)
{
}
}}
#include <boost/archive/binary_oarchive.hpp>
#include <sstream>
int main()
{
int x = 5;
test_derived d;
//boost::serialization::serialize(x, d, 54); // <- works.
std::ostringstream str;
boost::archive::binary_oarchive out(str);
out & d; // no worky.
}
我想免費的版本,如果可能的工作。是嗎?
上面的版本吐出錯誤關於serialize不是test_derived的成員。