nullable.hpp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. //
  2. // Boost.Pointer Container
  3. //
  4. // Copyright Thorsten Ottosen 2003-2005. Use, modification and
  5. // distribution is subject to the Boost Software License, Version
  6. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // For more information, see http://www.boost.org/libs/ptr_container/
  10. //
  11. #ifndef BOOST_INDIRECT_CONTAINER_NULLABLE_HPP
  12. #define BOOST_INDIRECT_CONTAINER_NULLABLE_HPP
  13. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  14. # pragma once
  15. #endif
  16. #include <boost/type_traits/detail/yes_no_type.hpp>
  17. #include <boost/mpl/eval_if.hpp>
  18. #include <boost/mpl/identity.hpp>
  19. #include <boost/config.hpp>
  20. namespace boost
  21. {
  22. template< class T >
  23. struct nullable
  24. {
  25. typedef T type;
  26. };
  27. namespace ptr_container_detail
  28. {
  29. template< class T >
  30. type_traits::yes_type is_nullable( const nullable<T>* );
  31. type_traits::no_type is_nullable( ... );
  32. }
  33. template< class T >
  34. struct is_nullable
  35. {
  36. private:
  37. BOOST_STATIC_CONSTANT( T*, var );
  38. public:
  39. #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
  40. #pragma warning(push)
  41. #pragma warning(disable:6334)
  42. #endif
  43. BOOST_STATIC_CONSTANT(bool, value = sizeof( ptr_container_detail::is_nullable( var ) )
  44. == sizeof( type_traits::yes_type ) );
  45. #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
  46. #pragma warning(pop)
  47. #endif
  48. };
  49. template< class T >
  50. struct remove_nullable
  51. {
  52. typedef BOOST_DEDUCED_TYPENAME mpl::eval_if< is_nullable<T>,
  53. T,
  54. mpl::identity<T> >::type
  55. type;
  56. };
  57. }
  58. #endif