Added boost serialization
parent
f106e76132
commit
6940c99ed6
@ -1 +1 @@
|
||||
Subproject commit 502437b2ae3f1da821aa7d5d5174ec356fa89269
|
||||
Subproject commit 1acb9699ac8e91654331504cf3524b26463eeee4
|
@ -0,0 +1,11 @@
|
||||
#include "boost/archive/binary_iarchive.hpp"
|
||||
#include "boost/archive/binary_oarchive.hpp"
|
||||
|
||||
#define SERIALIZE_IMPL(A) template void A::serialize<boost::archive::binary_iarchive>( \
|
||||
boost::archive::binary_iarchive & ar, \
|
||||
const unsigned int file_version \
|
||||
); \
|
||||
template void A::serialize<boost::archive::binary_oarchive>( \
|
||||
boost::archive::binary_oarchive & ar, \
|
||||
const unsigned int file_version \
|
||||
);
|
Loading…
Reference in New Issue