os/ossrv/ossrv_pub/boost_apis/boost/mem_fn.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_MEM_FN_HPP_INCLUDED
sl@0
     2
#define BOOST_MEM_FN_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
//
sl@0
    11
//  mem_fn.hpp - a generalization of std::mem_fun[_ref]
sl@0
    12
//
sl@0
    13
//  Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
sl@0
    14
//  Copyright (c) 2001 David Abrahams
sl@0
    15
//  Copyright (c) 2003-2005 Peter Dimov
sl@0
    16
//
sl@0
    17
// Distributed under the Boost Software License, Version 1.0. (See
sl@0
    18
// accompanying file LICENSE_1_0.txt or copy at
sl@0
    19
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    20
//
sl@0
    21
//  See http://www.boost.org/libs/bind/mem_fn.html for documentation.
sl@0
    22
//
sl@0
    23
sl@0
    24
#include <boost/config.hpp>
sl@0
    25
#include <boost/get_pointer.hpp>
sl@0
    26
#include <boost/detail/workaround.hpp>
sl@0
    27
sl@0
    28
namespace boost
sl@0
    29
{
sl@0
    30
sl@0
    31
#if defined(BOOST_NO_VOID_RETURNS)
sl@0
    32
sl@0
    33
#define BOOST_MEM_FN_CLASS_F , class F
sl@0
    34
#define BOOST_MEM_FN_TYPEDEF(X)
sl@0
    35
sl@0
    36
namespace _mfi // mem_fun_impl
sl@0
    37
{
sl@0
    38
sl@0
    39
template<class V> struct mf
sl@0
    40
{
sl@0
    41
sl@0
    42
#define BOOST_MEM_FN_RETURN return
sl@0
    43
sl@0
    44
#define BOOST_MEM_FN_NAME(X) inner_##X
sl@0
    45
#define BOOST_MEM_FN_CC
sl@0
    46
sl@0
    47
#include <boost/bind/mem_fn_template.hpp>
sl@0
    48
sl@0
    49
#undef BOOST_MEM_FN_CC
sl@0
    50
#undef BOOST_MEM_FN_NAME
sl@0
    51
sl@0
    52
#ifdef BOOST_MEM_FN_ENABLE_CDECL
sl@0
    53
sl@0
    54
#define BOOST_MEM_FN_NAME(X) inner_##X##_cdecl
sl@0
    55
#define BOOST_MEM_FN_CC __cdecl
sl@0
    56
sl@0
    57
#include <boost/bind/mem_fn_template.hpp>
sl@0
    58
sl@0
    59
#undef BOOST_MEM_FN_CC
sl@0
    60
#undef BOOST_MEM_FN_NAME
sl@0
    61
sl@0
    62
#endif
sl@0
    63
sl@0
    64
#ifdef BOOST_MEM_FN_ENABLE_STDCALL
sl@0
    65
sl@0
    66
#define BOOST_MEM_FN_NAME(X) inner_##X##_stdcall
sl@0
    67
#define BOOST_MEM_FN_CC __stdcall
sl@0
    68
sl@0
    69
#include <boost/bind/mem_fn_template.hpp>
sl@0
    70
sl@0
    71
#undef BOOST_MEM_FN_CC
sl@0
    72
#undef BOOST_MEM_FN_NAME
sl@0
    73
sl@0
    74
#endif
sl@0
    75
sl@0
    76
#ifdef BOOST_MEM_FN_ENABLE_FASTCALL
sl@0
    77
sl@0
    78
#define BOOST_MEM_FN_NAME(X) inner_##X##_fastcall
sl@0
    79
#define BOOST_MEM_FN_CC __fastcall
sl@0
    80
sl@0
    81
#include <boost/bind/mem_fn_template.hpp>
sl@0
    82
sl@0
    83
#undef BOOST_MEM_FN_CC
sl@0
    84
#undef BOOST_MEM_FN_NAME
sl@0
    85
sl@0
    86
#endif
sl@0
    87
sl@0
    88
#undef BOOST_MEM_FN_RETURN
sl@0
    89
sl@0
    90
}; // struct mf<V>
sl@0
    91
sl@0
    92
template<> struct mf<void>
sl@0
    93
{
sl@0
    94
sl@0
    95
#define BOOST_MEM_FN_RETURN
sl@0
    96
sl@0
    97
#define BOOST_MEM_FN_NAME(X) inner_##X
sl@0
    98
#define BOOST_MEM_FN_CC
sl@0
    99
sl@0
   100
#include <boost/bind/mem_fn_template.hpp>
sl@0
   101
sl@0
   102
#undef BOOST_MEM_FN_CC
sl@0
   103
#undef BOOST_MEM_FN_NAME
sl@0
   104
sl@0
   105
#ifdef BOOST_MEM_FN_ENABLE_CDECL
sl@0
   106
sl@0
   107
#define BOOST_MEM_FN_NAME(X) inner_##X##_cdecl
sl@0
   108
#define BOOST_MEM_FN_CC __cdecl
sl@0
   109
sl@0
   110
#include <boost/bind/mem_fn_template.hpp>
sl@0
   111
sl@0
   112
#undef BOOST_MEM_FN_CC
sl@0
   113
#undef BOOST_MEM_FN_NAME
sl@0
   114
sl@0
   115
#endif
sl@0
   116
sl@0
   117
#ifdef BOOST_MEM_FN_ENABLE_STDCALL
sl@0
   118
sl@0
   119
#define BOOST_MEM_FN_NAME(X) inner_##X##_stdcall
sl@0
   120
#define BOOST_MEM_FN_CC __stdcall
sl@0
   121
sl@0
   122
#include <boost/bind/mem_fn_template.hpp>
sl@0
   123
sl@0
   124
#undef BOOST_MEM_FN_CC
sl@0
   125
#undef BOOST_MEM_FN_NAME
sl@0
   126
sl@0
   127
#endif
sl@0
   128
sl@0
   129
#ifdef BOOST_MEM_FN_ENABLE_FASTCALL
sl@0
   130
sl@0
   131
#define BOOST_MEM_FN_NAME(X) inner_##X##_fastcall
sl@0
   132
#define BOOST_MEM_FN_CC __fastcall
sl@0
   133
sl@0
   134
#include <boost/bind/mem_fn_template.hpp>
sl@0
   135
sl@0
   136
#undef BOOST_MEM_FN_CC
sl@0
   137
#undef BOOST_MEM_FN_NAME
sl@0
   138
sl@0
   139
#endif
sl@0
   140
sl@0
   141
#undef BOOST_MEM_FN_RETURN
sl@0
   142
sl@0
   143
}; // struct mf<void>
sl@0
   144
sl@0
   145
#undef BOOST_MEM_FN_CLASS_F
sl@0
   146
#undef BOOST_MEM_FN_TYPEDEF_F
sl@0
   147
sl@0
   148
#define BOOST_MEM_FN_NAME(X) X
sl@0
   149
#define BOOST_MEM_FN_NAME2(X) inner_##X
sl@0
   150
#define BOOST_MEM_FN_CC
sl@0
   151
sl@0
   152
#include <boost/bind/mem_fn_vw.hpp>
sl@0
   153
sl@0
   154
#undef BOOST_MEM_FN_NAME
sl@0
   155
#undef BOOST_MEM_FN_NAME2
sl@0
   156
#undef BOOST_MEM_FN_CC
sl@0
   157
sl@0
   158
#ifdef BOOST_MEM_FN_ENABLE_CDECL
sl@0
   159
sl@0
   160
#define BOOST_MEM_FN_NAME(X) X##_cdecl
sl@0
   161
#define BOOST_MEM_FN_NAME2(X) inner_##X##_cdecl
sl@0
   162
#define BOOST_MEM_FN_CC __cdecl
sl@0
   163
sl@0
   164
#include <boost/bind/mem_fn_vw.hpp>
sl@0
   165
sl@0
   166
#undef BOOST_MEM_FN_NAME
sl@0
   167
#undef BOOST_MEM_FN_NAME2
sl@0
   168
#undef BOOST_MEM_FN_CC
sl@0
   169
sl@0
   170
#endif
sl@0
   171
sl@0
   172
#ifdef BOOST_MEM_FN_ENABLE_STDCALL
sl@0
   173
sl@0
   174
#define BOOST_MEM_FN_NAME(X) X##_stdcall
sl@0
   175
#define BOOST_MEM_FN_NAME2(X) inner_##X##_stdcall
sl@0
   176
#define BOOST_MEM_FN_CC __stdcall
sl@0
   177
sl@0
   178
#include <boost/bind/mem_fn_vw.hpp>
sl@0
   179
sl@0
   180
#undef BOOST_MEM_FN_NAME
sl@0
   181
#undef BOOST_MEM_FN_NAME2
sl@0
   182
#undef BOOST_MEM_FN_CC
sl@0
   183
sl@0
   184
#endif
sl@0
   185
sl@0
   186
#ifdef BOOST_MEM_FN_ENABLE_FASTCALL
sl@0
   187
sl@0
   188
#define BOOST_MEM_FN_NAME(X) X##_fastcall
sl@0
   189
#define BOOST_MEM_FN_NAME2(X) inner_##X##_fastcall
sl@0
   190
#define BOOST_MEM_FN_CC __fastcall
sl@0
   191
sl@0
   192
#include <boost/bind/mem_fn_vw.hpp>
sl@0
   193
sl@0
   194
#undef BOOST_MEM_FN_NAME
sl@0
   195
#undef BOOST_MEM_FN_NAME2
sl@0
   196
#undef BOOST_MEM_FN_CC
sl@0
   197
sl@0
   198
#endif
sl@0
   199
sl@0
   200
} // namespace _mfi
sl@0
   201
sl@0
   202
#else // #ifdef BOOST_NO_VOID_RETURNS
sl@0
   203
sl@0
   204
#define BOOST_MEM_FN_CLASS_F
sl@0
   205
#define BOOST_MEM_FN_TYPEDEF(X) typedef X;
sl@0
   206
sl@0
   207
namespace _mfi
sl@0
   208
{
sl@0
   209
sl@0
   210
#define BOOST_MEM_FN_RETURN return
sl@0
   211
sl@0
   212
#define BOOST_MEM_FN_NAME(X) X
sl@0
   213
#define BOOST_MEM_FN_CC
sl@0
   214
sl@0
   215
#include <boost/bind/mem_fn_template.hpp>
sl@0
   216
sl@0
   217
#undef BOOST_MEM_FN_CC
sl@0
   218
#undef BOOST_MEM_FN_NAME
sl@0
   219
sl@0
   220
#ifdef BOOST_MEM_FN_ENABLE_CDECL
sl@0
   221
sl@0
   222
#define BOOST_MEM_FN_NAME(X) X##_cdecl
sl@0
   223
#define BOOST_MEM_FN_CC __cdecl
sl@0
   224
sl@0
   225
#include <boost/bind/mem_fn_template.hpp>
sl@0
   226
sl@0
   227
#undef BOOST_MEM_FN_CC
sl@0
   228
#undef BOOST_MEM_FN_NAME
sl@0
   229
sl@0
   230
#endif
sl@0
   231
sl@0
   232
#ifdef BOOST_MEM_FN_ENABLE_STDCALL
sl@0
   233
sl@0
   234
#define BOOST_MEM_FN_NAME(X) X##_stdcall
sl@0
   235
#define BOOST_MEM_FN_CC __stdcall
sl@0
   236
sl@0
   237
#include <boost/bind/mem_fn_template.hpp>
sl@0
   238
sl@0
   239
#undef BOOST_MEM_FN_CC
sl@0
   240
#undef BOOST_MEM_FN_NAME
sl@0
   241
sl@0
   242
#endif
sl@0
   243
sl@0
   244
#ifdef BOOST_MEM_FN_ENABLE_FASTCALL
sl@0
   245
sl@0
   246
#define BOOST_MEM_FN_NAME(X) X##_fastcall
sl@0
   247
#define BOOST_MEM_FN_CC __fastcall
sl@0
   248
sl@0
   249
#include <boost/bind/mem_fn_template.hpp>
sl@0
   250
sl@0
   251
#undef BOOST_MEM_FN_CC
sl@0
   252
#undef BOOST_MEM_FN_NAME
sl@0
   253
sl@0
   254
#endif
sl@0
   255
sl@0
   256
#undef BOOST_MEM_FN_RETURN
sl@0
   257
sl@0
   258
} // namespace _mfi
sl@0
   259
sl@0
   260
#undef BOOST_MEM_FN_CLASS_F
sl@0
   261
#undef BOOST_MEM_FN_TYPEDEF
sl@0
   262
sl@0
   263
#endif // #ifdef BOOST_NO_VOID_RETURNS
sl@0
   264
sl@0
   265
#define BOOST_MEM_FN_NAME(X) X
sl@0
   266
#define BOOST_MEM_FN_CC
sl@0
   267
sl@0
   268
#include <boost/bind/mem_fn_cc.hpp>
sl@0
   269
sl@0
   270
#undef BOOST_MEM_FN_NAME
sl@0
   271
#undef BOOST_MEM_FN_CC
sl@0
   272
sl@0
   273
#ifdef BOOST_MEM_FN_ENABLE_CDECL
sl@0
   274
sl@0
   275
#define BOOST_MEM_FN_NAME(X) X##_cdecl
sl@0
   276
#define BOOST_MEM_FN_CC __cdecl
sl@0
   277
sl@0
   278
#include <boost/bind/mem_fn_cc.hpp>
sl@0
   279
sl@0
   280
#undef BOOST_MEM_FN_NAME
sl@0
   281
#undef BOOST_MEM_FN_CC
sl@0
   282
sl@0
   283
#endif
sl@0
   284
sl@0
   285
#ifdef BOOST_MEM_FN_ENABLE_STDCALL
sl@0
   286
sl@0
   287
#define BOOST_MEM_FN_NAME(X) X##_stdcall
sl@0
   288
#define BOOST_MEM_FN_CC __stdcall
sl@0
   289
sl@0
   290
#include <boost/bind/mem_fn_cc.hpp>
sl@0
   291
sl@0
   292
#undef BOOST_MEM_FN_NAME
sl@0
   293
#undef BOOST_MEM_FN_CC
sl@0
   294
sl@0
   295
#endif
sl@0
   296
sl@0
   297
#ifdef BOOST_MEM_FN_ENABLE_FASTCALL
sl@0
   298
sl@0
   299
#define BOOST_MEM_FN_NAME(X) X##_fastcall
sl@0
   300
#define BOOST_MEM_FN_CC __fastcall
sl@0
   301
sl@0
   302
#include <boost/bind/mem_fn_cc.hpp>
sl@0
   303
sl@0
   304
#undef BOOST_MEM_FN_NAME
sl@0
   305
#undef BOOST_MEM_FN_CC
sl@0
   306
sl@0
   307
#endif
sl@0
   308
sl@0
   309
// data member support
sl@0
   310
sl@0
   311
namespace _mfi
sl@0
   312
{
sl@0
   313
sl@0
   314
template<class R, class T> class dm
sl@0
   315
{
sl@0
   316
public:
sl@0
   317
sl@0
   318
    typedef R const & result_type;
sl@0
   319
    typedef T const * argument_type;
sl@0
   320
sl@0
   321
private:
sl@0
   322
    
sl@0
   323
    typedef R (T::*F);
sl@0
   324
    F f_;
sl@0
   325
sl@0
   326
    template<class U> R const & call(U & u, T const *) const
sl@0
   327
    {
sl@0
   328
        return (u.*f_);
sl@0
   329
    }
sl@0
   330
sl@0
   331
    template<class U> R const & call(U & u, void const *) const
sl@0
   332
    {
sl@0
   333
        return (get_pointer(u)->*f_);
sl@0
   334
    }
sl@0
   335
sl@0
   336
public:
sl@0
   337
    
sl@0
   338
    explicit dm(F f): f_(f) {}
sl@0
   339
sl@0
   340
    R & operator()(T * p) const
sl@0
   341
    {
sl@0
   342
        return (p->*f_);
sl@0
   343
    }
sl@0
   344
sl@0
   345
    R const & operator()(T const * p) const
sl@0
   346
    {
sl@0
   347
        return (p->*f_);
sl@0
   348
    }
sl@0
   349
sl@0
   350
    template<class U> R const & operator()(U const & u) const
sl@0
   351
    {
sl@0
   352
        return call(u, &u);
sl@0
   353
    }
sl@0
   354
sl@0
   355
#if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) && !BOOST_WORKAROUND(__MWERKS__, < 0x3200)
sl@0
   356
sl@0
   357
    R & operator()(T & t) const
sl@0
   358
    {
sl@0
   359
        return (t.*f_);
sl@0
   360
    }
sl@0
   361
sl@0
   362
    R const & operator()(T const & t) const
sl@0
   363
    {
sl@0
   364
        return (t.*f_);
sl@0
   365
    }
sl@0
   366
sl@0
   367
#endif
sl@0
   368
sl@0
   369
    bool operator==(dm const & rhs) const
sl@0
   370
    {
sl@0
   371
        return f_ == rhs.f_;
sl@0
   372
    }
sl@0
   373
sl@0
   374
    bool operator!=(dm const & rhs) const
sl@0
   375
    {
sl@0
   376
        return f_ != rhs.f_;
sl@0
   377
    }
sl@0
   378
};
sl@0
   379
sl@0
   380
} // namespace _mfi
sl@0
   381
sl@0
   382
template<class R, class T> _mfi::dm<R, T> mem_fn(R T::*f)
sl@0
   383
{
sl@0
   384
    return _mfi::dm<R, T>(f);
sl@0
   385
}
sl@0
   386
sl@0
   387
} // namespace boost
sl@0
   388
sl@0
   389
#endif // #ifndef BOOST_MEM_FN_HPP_INCLUDED