get_data.hpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // (C) Copyright 2005 Matthias Troyer
  2. // Use, modification and distribution is subject to the Boost Software
  3. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org for updates, documentation, and revision history.
  6. #ifndef BOOST_SERIALIZATION_DETAIL_GET_DATA_HPP
  7. #define BOOST_SERIALIZATION_DETAIL_GET_DATA_HPP
  8. // MS compatible compilers support #pragma once
  9. #if defined(_MSC_VER)
  10. # pragma once
  11. #endif
  12. #if defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  13. #define STD _STLP_STD
  14. #else
  15. #define STD std
  16. #endif
  17. #include <vector>
  18. #include <valarray>
  19. namespace boost {
  20. namespace serialization {
  21. namespace detail {
  22. template <class T, class Allocator>
  23. T* get_data(STD::vector<T,Allocator>& v)
  24. {
  25. return v.empty() ? 0 : &(v[0]);
  26. }
  27. template <class T, class Allocator>
  28. T* get_data(STD::vector<T,Allocator> const & v)
  29. {
  30. return get_data(const_cast<STD::vector<T,Allocator>&>(v));
  31. }
  32. template <class T>
  33. T* get_data(STD::valarray<T>& v)
  34. {
  35. return v.size()==0 ? 0 : &(v[0]);
  36. }
  37. template <class T>
  38. const T* get_data(STD::valarray<T> const& v)
  39. {
  40. return get_data(const_cast<STD::valarray<T>&>(v));
  41. }
  42. } // detail
  43. } // serialization
  44. } // boost
  45. #undef STD
  46. #endif // BOOST_SERIALIZATION_DETAIL_GET_DATA_HPP