Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:58:32

0001 // Copyright Sebastian Ramacher, 2007.
0002 // Distributed under the Boost Software License, Version 1.0. (See
0003 // accompanying file LICENSE_1_0.txt or copy at
0004 // http://www.boost.org/LICENSE_1_0.txt)
0005 
0006 #ifndef BOOST_PTR_CONTAINER_SERIALIZE_PTR_SET_HPP
0007 #define BOOST_PTR_CONTAINER_SERIALIZE_PTR_SET_HPP
0008 
0009 #include <boost/ptr_container/detail/serialize_reversible_cont.hpp>
0010 #include <boost/ptr_container/ptr_set.hpp>
0011 
0012 namespace boost
0013 {
0014 
0015 namespace serialization
0016 {
0017 
0018 template<class Archive, class T, class CloneAllocator, class Allocator>
0019 void serialize(Archive& ar, ptr_set<T, CloneAllocator, Allocator>& c, const unsigned int version)
0020 {
0021    core::split_free(ar, c, version);
0022 }
0023 
0024 template<class Archive, class T, class CloneAllocator, class Allocator>
0025 void serialize(Archive& ar, ptr_multiset<T, CloneAllocator, Allocator>& c, const unsigned int version)
0026 {
0027    core::split_free(ar, c, version);
0028 }
0029 
0030 } // namespace serialization
0031 } // namespace boost
0032 
0033 #endif