os/ossrv/ossrv_pub/boost_apis/boost/integer_fwd.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
//  Boost integer_fwd.hpp header file  ---------------------------------------//
sl@0
     2
sl@0
     3
//  (C) Copyright Dave Abrahams and Daryle Walker 2001. Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/integer for documentation.
sl@0
     8
sl@0
     9
#ifndef BOOST_INTEGER_FWD_HPP
sl@0
    10
#define BOOST_INTEGER_FWD_HPP
sl@0
    11
sl@0
    12
#include <climits>  // for UCHAR_MAX, etc.
sl@0
    13
#include <cstddef>  // for std::size_t
sl@0
    14
sl@0
    15
#include <boost/config.hpp>  // for BOOST_NO_INTRINSIC_WCHAR_T
sl@0
    16
#include <boost/limits.hpp>  // for std::numeric_limits
sl@0
    17
sl@0
    18
sl@0
    19
namespace boost
sl@0
    20
{
sl@0
    21
sl@0
    22
sl@0
    23
//  From <boost/cstdint.hpp>  ------------------------------------------------//
sl@0
    24
sl@0
    25
// Only has typedefs or using statements, with #conditionals
sl@0
    26
sl@0
    27
sl@0
    28
//  From <boost/integer_traits.hpp>  -----------------------------------------//
sl@0
    29
sl@0
    30
template < class T >
sl@0
    31
    class integer_traits;
sl@0
    32
sl@0
    33
template <  >
sl@0
    34
    class integer_traits< bool >;
sl@0
    35
sl@0
    36
template <  >
sl@0
    37
    class integer_traits< char >;
sl@0
    38
sl@0
    39
template <  >
sl@0
    40
    class integer_traits< signed char >;
sl@0
    41
sl@0
    42
template <  >
sl@0
    43
    class integer_traits< unsigned char >;
sl@0
    44
sl@0
    45
#ifndef BOOST_NO_INTRINSIC_WCHAR_T
sl@0
    46
template <  >
sl@0
    47
    class integer_traits< wchar_t >;
sl@0
    48
#endif
sl@0
    49
sl@0
    50
template <  >
sl@0
    51
    class integer_traits< short >;
sl@0
    52
sl@0
    53
template <  >
sl@0
    54
    class integer_traits< unsigned short >;
sl@0
    55
sl@0
    56
template <  >
sl@0
    57
    class integer_traits< int >;
sl@0
    58
sl@0
    59
template <  >
sl@0
    60
    class integer_traits< unsigned int >;
sl@0
    61
sl@0
    62
template <  >
sl@0
    63
    class integer_traits< long >;
sl@0
    64
sl@0
    65
template <  >
sl@0
    66
    class integer_traits< unsigned long >;
sl@0
    67
sl@0
    68
#ifdef ULLONG_MAX
sl@0
    69
template <  >
sl@0
    70
    class integer_traits<  ::boost::long_long_type>;
sl@0
    71
sl@0
    72
template <  >
sl@0
    73
    class integer_traits<  ::boost::ulong_long_type >;
sl@0
    74
#endif
sl@0
    75
sl@0
    76
sl@0
    77
//  From <boost/integer.hpp>  ------------------------------------------------//
sl@0
    78
sl@0
    79
template < typename LeastInt >
sl@0
    80
    struct int_fast_t;
sl@0
    81
sl@0
    82
template< int Bits >
sl@0
    83
    struct int_t;
sl@0
    84
sl@0
    85
template< int Bits >
sl@0
    86
    struct uint_t;
sl@0
    87
sl@0
    88
template< long MaxValue >
sl@0
    89
    struct int_max_value_t;
sl@0
    90
sl@0
    91
template< long MinValue >
sl@0
    92
    struct int_min_value_t;
sl@0
    93
sl@0
    94
template< unsigned long Value >
sl@0
    95
    struct uint_value_t;
sl@0
    96
sl@0
    97
sl@0
    98
//  From <boost/integer/integer_mask.hpp>  -----------------------------------//
sl@0
    99
sl@0
   100
template < std::size_t Bit >
sl@0
   101
    struct high_bit_mask_t;
sl@0
   102
sl@0
   103
template < std::size_t Bits >
sl@0
   104
    struct low_bits_mask_t;
sl@0
   105
sl@0
   106
template <  >
sl@0
   107
    struct low_bits_mask_t< ::std::numeric_limits<unsigned char>::digits >;
sl@0
   108
sl@0
   109
#if USHRT_MAX > UCHAR_MAX
sl@0
   110
template <  >
sl@0
   111
    struct low_bits_mask_t< ::std::numeric_limits<unsigned short>::digits >;
sl@0
   112
#endif
sl@0
   113
sl@0
   114
#if UINT_MAX > USHRT_MAX
sl@0
   115
template <  >
sl@0
   116
    struct low_bits_mask_t< ::std::numeric_limits<unsigned int>::digits >;
sl@0
   117
#endif
sl@0
   118
sl@0
   119
#if ULONG_MAX > UINT_MAX
sl@0
   120
template <  >
sl@0
   121
    struct low_bits_mask_t< ::std::numeric_limits<unsigned long>::digits >;
sl@0
   122
#endif
sl@0
   123
sl@0
   124
sl@0
   125
//  From <boost/integer/static_log2.hpp>  ------------------------------------//
sl@0
   126
sl@0
   127
template < unsigned long Value >
sl@0
   128
    struct static_log2;
sl@0
   129
sl@0
   130
template <  >
sl@0
   131
    struct static_log2< 0ul >;
sl@0
   132
sl@0
   133
sl@0
   134
//  From <boost/integer/static_min_max.hpp>  ---------------------------------//
sl@0
   135
sl@0
   136
template < long Value1, long Value2 >
sl@0
   137
    struct static_signed_min;
sl@0
   138
sl@0
   139
template < long Value1, long Value2 >
sl@0
   140
    struct static_signed_max;
sl@0
   141
sl@0
   142
template < unsigned long Value1, unsigned long Value2 >
sl@0
   143
    struct static_unsigned_min;
sl@0
   144
sl@0
   145
template < unsigned long Value1, unsigned long Value2 >
sl@0
   146
    struct static_unsigned_max;
sl@0
   147
sl@0
   148
sl@0
   149
}  // namespace boost
sl@0
   150
sl@0
   151
sl@0
   152
#endif  // BOOST_INTEGER_FWD_HPP