12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #ifndef BOOST_MULTI_INDEX_DETAIL_SERIALIZATION_VERSION_HPP
- #define BOOST_MULTI_INDEX_DETAIL_SERIALIZATION_VERSION_HPP
- #if defined(_MSC_VER)
- #pragma once
- #endif
- #include <boost/config.hpp> /* keep it first to prevent nasty warns in MSVC */
- #include <boost/core/serialization.hpp>
- namespace boost{
- namespace multi_index{
- namespace detail{
- template<typename T>
- struct serialization_version
- {
- serialization_version():
- value(boost::serialization::version<serialization_version>::value){}
- serialization_version& operator=(unsigned int x){value=x;return *this;};
- operator unsigned int()const{return value;}
- private:
- friend class boost::serialization::access;
- template<class Archive>
- void serialize(Archive& ar,const unsigned int version)
- {
- core::split_member(ar,*this,version);
- }
- template<class Archive>
- void save(Archive&,const unsigned int)const{}
- template<class Archive>
- void load(Archive&,const unsigned int version)
- {
- this->value=version;
- }
- unsigned int value;
- };
- }
- }
- namespace serialization {
- template<typename T>
- struct version<boost::multi_index::detail::serialization_version<T> >
- {
- BOOST_STATIC_CONSTANT(int,value=version<T>::value);
- };
- }
- }
- #endif
|