1 #ifndef SERIALIZATION_SAVELOAD_HPP
2 #define SERIALIZATION_SAVELOAD_HPP
4 #include <boost/serialization/split_member.hpp>
7 #define BLUB_SERIALIZATION_SAVELOAD() BOOST_SERIALIZATION_SPLIT_MEMBER()
12 namespace serialization
16 template<
class Archive,
class T>
17 void saveLoad(Archive & ar, T & t,
const unsigned int file_version)
19 boost::serialization::split_member(ar, t, file_version);
27 #endif // SERIALIZATION_SAVELOAD_HPP
Definition: deadlineTimer.hpp:10