valarray.hpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #ifndef BOOST_SERIALIZATION_VALARAY_HPP
  2. #define BOOST_SERIALIZATION_VALARAY_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. // valarray.hpp: serialization for stl vector templates
  9. // (C) Copyright 2005 Matthias Troyer .
  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 <valarray>
  15. #include <boost/config.hpp>
  16. #include <boost/serialization/split_free.hpp>
  17. #include <boost/serialization/array.hpp>
  18. #include <boost/serialization/collection_size_type.hpp>
  19. #include <boost/serialization/detail/get_data.hpp>
  20. // function specializations must be defined in the appropriate
  21. // namespace - boost::serialization
  22. #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  23. #define STD _STLP_STD
  24. #else
  25. #define STD std
  26. #endif
  27. namespace boost {
  28. namespace serialization {
  29. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  30. // valarray< T >
  31. template<class Archive, class U>
  32. void save( Archive & ar, const STD::valarray<U> &t, const unsigned int /*file_version*/ )
  33. {
  34. const collection_size_type count(t.size());
  35. ar << BOOST_SERIALIZATION_NVP(count);
  36. if (t.size())
  37. ar << make_array(detail::get_data(t), t.size());
  38. }
  39. template<class Archive, class U>
  40. void load( Archive & ar, STD::valarray<U> &t, const unsigned int /*file_version*/ )
  41. {
  42. collection_size_type count;
  43. ar >> BOOST_SERIALIZATION_NVP(count);
  44. t.resize(count);
  45. if (t.size())
  46. ar >> make_array(detail::get_data(t), t.size());
  47. }
  48. // split non-intrusive serialization function member into separate
  49. // non intrusive save/load member functions
  50. template<class Archive, class U>
  51. inline void serialize( Archive & ar, STD::valarray<U> & t, const unsigned int file_version)
  52. {
  53. boost::serialization::split_free(ar, t, file_version);
  54. }
  55. } } // end namespace boost::serialization
  56. #include <boost/serialization/collection_traits.hpp>
  57. BOOST_SERIALIZATION_COLLECTION_TRAITS(STD::valarray)
  58. #undef STD
  59. #endif // BOOST_SERIALIZATION_VALARAY_HPP