os/ossrv/ossrv_pub/boost_apis/boost/ref.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef BOOST_REF_HPP_INCLUDED
sl@0
     2
#define BOOST_REF_HPP_INCLUDED
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
sl@0
     6
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     7
# pragma once
sl@0
     8
#endif
sl@0
     9
sl@0
    10
#include <boost/config.hpp>
sl@0
    11
#include <boost/utility/addressof.hpp>
sl@0
    12
#include <boost/mpl/bool.hpp>
sl@0
    13
#include <boost/detail/workaround.hpp>
sl@0
    14
sl@0
    15
//
sl@0
    16
//  ref.hpp - ref/cref, useful helper functions
sl@0
    17
//
sl@0
    18
//  Copyright (C) 1999, 2000 Jaakko Järvi (jaakko.jarvi@cs.utu.fi)
sl@0
    19
//  Copyright (C) 2001, 2002 Peter Dimov
sl@0
    20
//  Copyright (C) 2002 David Abrahams
sl@0
    21
//
sl@0
    22
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
    23
// accompanying file LICENSE_1_0.txt or copy at
sl@0
    24
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    25
//
sl@0
    26
//  See http://www.boost.org/libs/bind/ref.html for documentation.
sl@0
    27
//
sl@0
    28
sl@0
    29
namespace boost
sl@0
    30
{
sl@0
    31
sl@0
    32
template<class T> class reference_wrapper
sl@0
    33
{ 
sl@0
    34
public:
sl@0
    35
    typedef T type;
sl@0
    36
sl@0
    37
#if defined( BOOST_MSVC ) && BOOST_WORKAROUND( BOOST_MSVC, < 1300 )
sl@0
    38
sl@0
    39
    explicit reference_wrapper(T& t): t_(&t) {}
sl@0
    40
sl@0
    41
#else
sl@0
    42
sl@0
    43
    explicit reference_wrapper(T& t): t_(boost::addressof(t)) {}
sl@0
    44
sl@0
    45
#endif
sl@0
    46
sl@0
    47
    operator T& () const { return *t_; }
sl@0
    48
sl@0
    49
    T& get() const { return *t_; }
sl@0
    50
sl@0
    51
    T* get_pointer() const { return t_; }
sl@0
    52
sl@0
    53
private:
sl@0
    54
sl@0
    55
    T* t_;
sl@0
    56
};
sl@0
    57
sl@0
    58
# if defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT(0x581) )
sl@0
    59
#  define BOOST_REF_CONST
sl@0
    60
# else
sl@0
    61
#  define BOOST_REF_CONST const
sl@0
    62
# endif
sl@0
    63
sl@0
    64
template<class T> inline reference_wrapper<T> BOOST_REF_CONST ref(T & t)
sl@0
    65
{ 
sl@0
    66
    return reference_wrapper<T>(t);
sl@0
    67
}
sl@0
    68
sl@0
    69
template<class T> inline reference_wrapper<T const> BOOST_REF_CONST cref(T const & t)
sl@0
    70
{
sl@0
    71
    return reference_wrapper<T const>(t);
sl@0
    72
}
sl@0
    73
sl@0
    74
# undef BOOST_REF_CONST
sl@0
    75
sl@0
    76
# ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
    77
sl@0
    78
template<typename T>
sl@0
    79
class is_reference_wrapper
sl@0
    80
    : public mpl::false_
sl@0
    81
{
sl@0
    82
};
sl@0
    83
sl@0
    84
template<typename T>
sl@0
    85
class unwrap_reference
sl@0
    86
{
sl@0
    87
 public:
sl@0
    88
    typedef T type;
sl@0
    89
};
sl@0
    90
sl@0
    91
#  define AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF(X) \
sl@0
    92
template<typename T> \
sl@0
    93
class is_reference_wrapper< X > \
sl@0
    94
    : public mpl::true_ \
sl@0
    95
{ \
sl@0
    96
}; \
sl@0
    97
\
sl@0
    98
template<typename T> \
sl@0
    99
class unwrap_reference< X > \
sl@0
   100
{ \
sl@0
   101
 public: \
sl@0
   102
    typedef T type; \
sl@0
   103
}; \
sl@0
   104
/**/
sl@0
   105
sl@0
   106
AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF(reference_wrapper<T>)
sl@0
   107
#if !defined(BOOST_NO_CV_SPECIALIZATIONS)
sl@0
   108
AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF(reference_wrapper<T> const)
sl@0
   109
AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF(reference_wrapper<T> volatile)
sl@0
   110
AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF(reference_wrapper<T> const volatile)
sl@0
   111
#endif
sl@0
   112
sl@0
   113
#  undef AUX_REFERENCE_WRAPPER_METAFUNCTIONS_DEF
sl@0
   114
sl@0
   115
# else // no partial specialization
sl@0
   116
sl@0
   117
} // namespace boost
sl@0
   118
sl@0
   119
#include <boost/type.hpp>
sl@0
   120
sl@0
   121
namespace boost
sl@0
   122
{
sl@0
   123
sl@0
   124
namespace detail
sl@0
   125
{
sl@0
   126
  typedef char (&yes_reference_wrapper_t)[1];
sl@0
   127
  typedef char (&no_reference_wrapper_t)[2];
sl@0
   128
      
sl@0
   129
  no_reference_wrapper_t is_reference_wrapper_test(...);
sl@0
   130
sl@0
   131
  template<typename T>
sl@0
   132
  yes_reference_wrapper_t is_reference_wrapper_test(type< reference_wrapper<T> >);
sl@0
   133
sl@0
   134
  template<bool wrapped>
sl@0
   135
  struct reference_unwrapper
sl@0
   136
  {
sl@0
   137
      template <class T>
sl@0
   138
      struct apply
sl@0
   139
      {
sl@0
   140
          typedef T type;
sl@0
   141
      };
sl@0
   142
  };
sl@0
   143
sl@0
   144
  template<>
sl@0
   145
  struct reference_unwrapper<true>
sl@0
   146
  {
sl@0
   147
      template <class T>
sl@0
   148
      struct apply
sl@0
   149
      {
sl@0
   150
          typedef typename T::type type;
sl@0
   151
      };
sl@0
   152
  };
sl@0
   153
}
sl@0
   154
sl@0
   155
template<typename T>
sl@0
   156
class is_reference_wrapper
sl@0
   157
{
sl@0
   158
 public:
sl@0
   159
    BOOST_STATIC_CONSTANT(
sl@0
   160
        bool, value = (
sl@0
   161
             sizeof(detail::is_reference_wrapper_test(type<T>()))
sl@0
   162
            == sizeof(detail::yes_reference_wrapper_t)));
sl@0
   163
    
sl@0
   164
    typedef ::boost::mpl::bool_<value> type;
sl@0
   165
};
sl@0
   166
sl@0
   167
template <typename T>
sl@0
   168
class unwrap_reference
sl@0
   169
    : public detail::reference_unwrapper<
sl@0
   170
        is_reference_wrapper<T>::value
sl@0
   171
      >::template apply<T>
sl@0
   172
{};
sl@0
   173
sl@0
   174
# endif // BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   175
sl@0
   176
} // namespace boost
sl@0
   177
sl@0
   178
#endif // #ifndef BOOST_REF_HPP_INCLUDED