Update contrib.
1 #ifndef BOOST_SERIALIZATION_SET_HPP
2 #define BOOST_SERIALIZATION_SET_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // set.hpp: serialization for stl set templates
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13 // Use, modification and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See http://www.boost.org for updates, documentation, and revision history.
21 #include <boost/config.hpp>
23 #include <boost/serialization/collections_save_imp.hpp>
24 #include <boost/serialization/collections_load_imp.hpp>
25 #include <boost/serialization/split_free.hpp>
28 namespace serialization {
30 template<class Archive, class Key, class Compare, class Allocator >
33 const std::set<Key, Compare, Allocator> &t,
34 const unsigned int /* file_version */
36 boost::serialization::stl::save_collection<
37 Archive, std::set<Key, Compare, Allocator>
41 template<class Archive, class Key, class Compare, class Allocator >
44 std::set<Key, Compare, Allocator> &t,
45 const unsigned int /* file_version */
47 boost::serialization::stl::load_collection<
49 std::set<Key, Compare, Allocator>,
50 boost::serialization::stl::archive_input_unique<
51 Archive, std::set<Key, Compare, Allocator>
53 boost::serialization::stl::no_reserve_imp<std::set<
54 Key, Compare, Allocator>
59 // split non-intrusive serialization function member into separate
60 // non intrusive save/load member functions
61 template<class Archive, class Key, class Compare, class Allocator >
62 inline void serialize(
64 std::set<Key, Compare, Allocator> & t,
65 const unsigned int file_version
67 boost::serialization::split_free(ar, t, file_version);
71 template<class Archive, class Key, class Compare, class Allocator >
74 const std::multiset<Key, Compare, Allocator> &t,
75 const unsigned int /* file_version */
77 boost::serialization::stl::save_collection<
79 std::multiset<Key, Compare, Allocator>
83 template<class Archive, class Key, class Compare, class Allocator >
86 std::multiset<Key, Compare, Allocator> &t,
87 const unsigned int /* file_version */
89 boost::serialization::stl::load_collection<
91 std::multiset<Key, Compare, Allocator>,
92 boost::serialization::stl::archive_input_multi<
93 Archive, std::multiset<Key, Compare, Allocator>
95 boost::serialization::stl::no_reserve_imp<
96 std::multiset<Key, Compare, Allocator>
101 // split non-intrusive serialization function member into separate
102 // non intrusive save/load member functions
103 template<class Archive, class Key, class Compare, class Allocator >
104 inline void serialize(
106 std::multiset<Key, Compare, Allocator> & t,
107 const unsigned int file_version
109 boost::serialization::split_free(ar, t, file_version);
112 } // namespace serialization
115 #include <boost/serialization/collection_traits.hpp>
117 BOOST_SERIALIZATION_COLLECTION_TRAITS(std::set)
118 BOOST_SERIALIZATION_COLLECTION_TRAITS(std::multiset)
120 #endif // BOOST_SERIALIZATION_SET_HPP