我有一个“生成器”类,它基本上构造了它的子类。要使用这个东西,我只需将它子类化并传递正确的参数来构建我想要构建的对象。我想序列化这些东西,因为所有数据都在基础中,所以没有充分的理由为每个子类这样做。这是我的例子:
#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.
}
如果可能的话,我希望免费版本能够工作。是吗?
上面的版本出现了关于序列化不是 test_derived 成员的错误。