os/ossrv/ossrv_pub/boost_apis/boost/pointer_to_other.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_POINTER_TO_OTHER_HPP_INCLUDED
sl@0
     2
#define BOOST_POINTER_TO_OTHER_HPP_INCLUDED
sl@0
     3
sl@0
     4
//
sl@0
     5
//  pointer_to_other.hpp
sl@0
     6
//
sl@0
     7
//  (C) Copyright Ion Gaztaņaga 2005.
sl@0
     8
//  Copyright (c) 2005 Peter Dimov.
sl@0
     9
//
sl@0
    10
//  Distributed under the Boost Software License, Version 1.0.
sl@0
    11
//
sl@0
    12
//  (See accompanying file LICENSE_1_0.txt or copy at 
sl@0
    13
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
    14
//
sl@0
    15
//  See http://www.boost.org/libs/smart_ptr/pointer_to_other.html
sl@0
    16
//
sl@0
    17
sl@0
    18
namespace boost
sl@0
    19
{
sl@0
    20
sl@0
    21
// Defines the same pointer type (raw or smart) to another pointee type
sl@0
    22
sl@0
    23
template<class T, class U>
sl@0
    24
struct pointer_to_other;
sl@0
    25
sl@0
    26
template<class T, class U, 
sl@0
    27
         template<class> class Sp>
sl@0
    28
struct pointer_to_other< Sp<T>, U >
sl@0
    29
{
sl@0
    30
   typedef Sp<U> type;
sl@0
    31
};
sl@0
    32
sl@0
    33
template<class T, class T2, class U, 
sl@0
    34
         template<class, class> class Sp>
sl@0
    35
struct pointer_to_other< Sp<T, T2>, U >
sl@0
    36
{
sl@0
    37
   typedef Sp<U, T2> type;
sl@0
    38
};
sl@0
    39
sl@0
    40
template<class T, class T2, class T3, class U, 
sl@0
    41
         template<class, class, class> class Sp>
sl@0
    42
struct pointer_to_other< Sp<T, T2, T3>, U >
sl@0
    43
{
sl@0
    44
   typedef Sp<U, T2, T3> type;
sl@0
    45
};
sl@0
    46
sl@0
    47
template<class T, class U>
sl@0
    48
struct pointer_to_other< T*, U >
sl@0
    49
{
sl@0
    50
   typedef U* type;
sl@0
    51
};
sl@0
    52
sl@0
    53
} // namespace boost
sl@0
    54
sl@0
    55
#endif // #ifndef BOOST_POINTER_TO_OTHER_HPP_INCLUDED