/Src/Dependencies/Boost/boost/serialization/type_info_implementation.hpp

http://hadesmem.googlecode.com/ · C++ Header · 86 lines · 57 code · 12 blank · 17 comment · 1 complexity · e4162958e65c9d43c7f5c9382ebc87a4 MD5 · raw file

  1. #ifndef BOOST_SERIALIZATION_TYPE_INFO_IMPLEMENTATION_HPP
  2. #define BOOST_SERIALIZATION_TYPE_INFO_IMPLEMENTATION_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. // type_info_implementation.hpp: interface for portable version of type_info
  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 <boost/config.hpp>
  15. #include <boost/detail/workaround.hpp>
  16. #include <boost/static_assert.hpp>
  17. #include <boost/mpl/eval_if.hpp>
  18. #include <boost/mpl/identity.hpp>
  19. #include <boost/type_traits/is_base_and_derived.hpp>
  20. #include <boost/serialization/traits.hpp>
  21. namespace boost {
  22. namespace serialization {
  23. // note that T and const T are folded into const T so that
  24. // there is only one table entry per type
  25. template<class T>
  26. struct type_info_implementation {
  27. template<class U>
  28. struct traits_class_typeinfo_implementation {
  29. typedef BOOST_DEDUCED_TYPENAME U::type_info_implementation::type type;
  30. };
  31. // note: at least one compiler complained w/o the full qualification
  32. // on basic traits below
  33. typedef
  34. BOOST_DEDUCED_TYPENAME mpl::eval_if<
  35. is_base_and_derived<boost::serialization::basic_traits, T>,
  36. traits_class_typeinfo_implementation< T >,
  37. //else
  38. mpl::identity<
  39. BOOST_DEDUCED_TYPENAME extended_type_info_impl< T >::type
  40. >
  41. >::type type;
  42. };
  43. } // namespace serialization
  44. } // namespace boost
  45. // define a macro to assign a particular derivation of extended_type_info
  46. // to a specified a class.
  47. #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x560))
  48. #define BOOST_CLASS_TYPE_INFO(T, ETI) \
  49. namespace boost { \
  50. namespace serialization { \
  51. template<> \
  52. struct type_info_implementation< T > { \
  53. typedef const ETI type; \
  54. }; \
  55. } \
  56. } \
  57. /**/
  58. #else
  59. #define BOOST_CLASS_TYPE_INFO(T, ETI) \
  60. namespace boost { \
  61. namespace serialization { \
  62. template<> \
  63. struct type_info_implementation< T > { \
  64. typedef ETI type; \
  65. }; \
  66. template<> \
  67. struct type_info_implementation< const T > { \
  68. typedef ETI type; \
  69. }; \
  70. } \
  71. } \
  72. /**/
  73. #endif
  74. #endif /// BOOST_SERIALIZATION_TYPE_INFO_IMPLEMENTATION_HPP