list.hpp 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #ifndef BOOST_SERIALIZATION_LIST_HPP
  2. #define BOOST_SERIALIZATION_LIST_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // list.hpp: serialization for stl list templates
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // Use, modification and distribution is subject to the Boost Software
  11. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // See http://www.boost.org for updates, documentation, and revision history.
  14. #include <list>
  15. #include <boost/config.hpp>
  16. #include <boost/serialization/collections_save_imp.hpp>
  17. #include <boost/serialization/collections_load_imp.hpp>
  18. #include <boost/archive/detail/basic_iarchive.hpp>
  19. #include <boost/serialization/access.hpp>
  20. #include <boost/serialization/nvp.hpp>
  21. #include <boost/serialization/collection_size_type.hpp>
  22. #include <boost/serialization/item_version_type.hpp>
  23. #include <boost/serialization/split_free.hpp>
  24. #include <boost/serialization/detail/stack_constructor.hpp>
  25. namespace boost {
  26. namespace serialization {
  27. template<class Archive, class U, class Allocator>
  28. inline void save(
  29. Archive & ar,
  30. const std::list<U, Allocator> &t,
  31. const unsigned int /* file_version */
  32. ){
  33. boost::serialization::stl::save_collection<
  34. Archive,
  35. std::list<U, Allocator>
  36. >(ar, t);
  37. }
  38. template<class Archive, class U, class Allocator>
  39. inline void load(
  40. Archive & ar,
  41. std::list<U, Allocator> &t,
  42. const unsigned int /* file_version */
  43. ){
  44. const boost::archive::library_version_type library_version(
  45. ar.get_library_version()
  46. );
  47. // retrieve number of elements
  48. item_version_type item_version(0);
  49. collection_size_type count;
  50. ar >> BOOST_SERIALIZATION_NVP(count);
  51. if(boost::archive::library_version_type(3) < library_version){
  52. ar >> BOOST_SERIALIZATION_NVP(item_version);
  53. }
  54. stl::collection_load_impl(ar, t, count, item_version);
  55. }
  56. // split non-intrusive serialization function member into separate
  57. // non intrusive save/load member functions
  58. template<class Archive, class U, class Allocator>
  59. inline void serialize(
  60. Archive & ar,
  61. std::list<U, Allocator> & t,
  62. const unsigned int file_version
  63. ){
  64. boost::serialization::split_free(ar, t, file_version);
  65. }
  66. } // serialization
  67. } // namespace boost
  68. #include <boost/serialization/collection_traits.hpp>
  69. BOOST_SERIALIZATION_COLLECTION_TRAITS(std::list)
  70. #endif // BOOST_SERIALIZATION_LIST_HPP