ephemeral.hpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #ifndef BOOST_SERIALIZATION_EPHEMERAL_HPP
  2. #define BOOST_SERIALIZATION_EPHEMERAL_HPP
  3. // MS compatible compilers support
  4. #pragma once
  5. #if defined(_MSC_VER)
  6. # pragma once
  7. #endif
  8. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  9. // ephemeral_object.hpp: interface for serialization system.
  10. // (C) Copyright 2007 Matthias Troyer.
  11. // Use, modification and distribution is subject to the Boost Software
  12. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  13. // http://www.boost.org/LICENSE_1_0.txt)
  14. // See http://www.boost.org for updates, documentation, and revision history.
  15. #include <utility>
  16. #include <boost/config.hpp>
  17. #include <boost/detail/workaround.hpp>
  18. #include <boost/mpl/integral_c.hpp>
  19. #include <boost/mpl/integral_c_tag.hpp>
  20. #include <boost/serialization/level.hpp>
  21. #include <boost/serialization/tracking.hpp>
  22. #include <boost/serialization/split_member.hpp>
  23. #include <boost/serialization/base_object.hpp>
  24. #include <boost/serialization/traits.hpp>
  25. #include <boost/serialization/wrapper.hpp>
  26. namespace boost {
  27. namespace serialization {
  28. template<class T>
  29. struct ephemeral_object :
  30. public wrapper_traits<ephemeral_object<T> >
  31. {
  32. explicit ephemeral_object(T& t) :
  33. val(t)
  34. {}
  35. T & value() const {
  36. return val;
  37. }
  38. const T & const_value() const {
  39. return val;
  40. }
  41. template<class Archive>
  42. void serialize(Archive &ar, const unsigned int) const
  43. {
  44. ar & val;
  45. }
  46. private:
  47. T & val;
  48. };
  49. template<class T>
  50. inline
  51. const ephemeral_object<T> ephemeral(const char * name, T & t){
  52. return ephemeral_object<T>(name, t);
  53. }
  54. } // seralization
  55. } // boost
  56. #endif // BOOST_SERIALIZATION_EPHEMERAL_HPP