stack.hpp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef BOOST_SERIALIZATION_STACK_HPP
  2. #define BOOST_SERIALIZATION_STACK_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // stack.hpp
  9. // (C) Copyright 2014 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 <stack>
  15. #include <boost/config.hpp>
  16. // function specializations must be defined in the appropriate
  17. // namespace - boost::serialization
  18. #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  19. #define STD _STLP_STD
  20. #else
  21. #define STD std
  22. #endif
  23. namespace boost {
  24. namespace serialization {
  25. namespace detail{
  26. template <typename U, typename C>
  27. struct stack_save : public STD::stack<U, C> {
  28. template<class Archive>
  29. void operator()(Archive & ar, const unsigned int file_version) const {
  30. save(ar, STD::stack<U, C>::c, file_version);
  31. }
  32. };
  33. template <typename U, typename C>
  34. struct stack_load : public STD::stack<U, C> {
  35. template<class Archive>
  36. void operator()(Archive & ar, const unsigned int file_version) {
  37. load(ar, STD::stack<U, C>::c, file_version);
  38. }
  39. };
  40. } // detail
  41. template<class Archive, class T, class C>
  42. inline void serialize(
  43. Archive & ar,
  44. std::stack< T, C> & t,
  45. const unsigned int file_version
  46. ){
  47. typedef typename mpl::eval_if<
  48. typename Archive::is_saving,
  49. mpl::identity<detail::stack_save<T, C> >,
  50. mpl::identity<detail::stack_load<T, C> >
  51. >::type typex;
  52. static_cast<typex &>(t)(ar, file_version);
  53. }
  54. } // namespace serialization
  55. } // namespace boost
  56. #include <boost/serialization/collection_traits.hpp>
  57. BOOST_SERIALIZATION_COLLECTION_TRAITS(STD::stack)
  58. #undef STD
  59. #endif // BOOST_SERIALIZATION_DEQUE_HPP