1 #ifndef BOOST_SERIALIZATION_UNORDERED_COLLECTIONS_LOAD_IMP_HPP
2 #define BOOST_SERIALIZATION_UNORDERED_COLLECTIONS_LOAD_IMP_HPP
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
7 # pragma warning (disable : 4786) // too long name, harmless warning
22 #include <boost/assert.hpp>
24 #include <boost/config.hpp>
25 #if defined(BOOST_NO_STDC_NAMESPACE)
30 #include <boost/detail/workaround.hpp>
32 #include <boost/archive/detail/basic_iarchive.hpp>
33 #include <boost/serialization/access.hpp>
34 #include <boost/serialization/nvp.hpp>
35 #include <boost/serialization/detail/stack_constructor.hpp>
36 #include <boost/serialization/collection_size_type.hpp>
37 #include <boost/serialization/item_version_type.hpp>
40 namespace serialization {
46 template<
class Archive,
class Container,
class InputFunction>
47 inline void load_unordered_collection(Archive & ar, Container &s)
50 collection_size_type count;
51 collection_size_type bucket_count;
52 boost::serialization::item_version_type item_version(0);
53 boost::archive::library_version_type library_version(
54 ar.get_library_version()
57 ar >> BOOST_SERIALIZATION_NVP(count);
58 ar >> BOOST_SERIALIZATION_NVP(bucket_count);
59 if(boost::archive::library_version_type(3) < library_version){
60 ar >> BOOST_SERIALIZATION_NVP(item_version);
62 s.rehash(bucket_count);
65 ifunc(ar, s, item_version);
73 #endif //BOOST_SERIALIZATION_UNORDERED_COLLECTIONS_LOAD_IMP_HPP