sl@0: // Boost integer_fwd.hpp header file ---------------------------------------// sl@0: sl@0: // (C) Copyright Dave Abrahams and Daryle Walker 2001. Distributed under the Boost sl@0: // Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org/libs/integer for documentation. sl@0: sl@0: #ifndef BOOST_INTEGER_FWD_HPP sl@0: #define BOOST_INTEGER_FWD_HPP sl@0: sl@0: #include // for UCHAR_MAX, etc. sl@0: #include // for std::size_t sl@0: sl@0: #include // for BOOST_NO_INTRINSIC_WCHAR_T sl@0: #include // for std::numeric_limits sl@0: sl@0: sl@0: namespace boost sl@0: { sl@0: sl@0: sl@0: // From ------------------------------------------------// sl@0: sl@0: // Only has typedefs or using statements, with #conditionals sl@0: sl@0: sl@0: // From -----------------------------------------// sl@0: sl@0: template < class T > sl@0: class integer_traits; sl@0: sl@0: template < > sl@0: class integer_traits< bool >; sl@0: sl@0: template < > sl@0: class integer_traits< char >; sl@0: sl@0: template < > sl@0: class integer_traits< signed char >; sl@0: sl@0: template < > sl@0: class integer_traits< unsigned char >; sl@0: sl@0: #ifndef BOOST_NO_INTRINSIC_WCHAR_T sl@0: template < > sl@0: class integer_traits< wchar_t >; sl@0: #endif sl@0: sl@0: template < > sl@0: class integer_traits< short >; sl@0: sl@0: template < > sl@0: class integer_traits< unsigned short >; sl@0: sl@0: template < > sl@0: class integer_traits< int >; sl@0: sl@0: template < > sl@0: class integer_traits< unsigned int >; sl@0: sl@0: template < > sl@0: class integer_traits< long >; sl@0: sl@0: template < > sl@0: class integer_traits< unsigned long >; sl@0: sl@0: #ifdef ULLONG_MAX sl@0: template < > sl@0: class integer_traits< ::boost::long_long_type>; sl@0: sl@0: template < > sl@0: class integer_traits< ::boost::ulong_long_type >; sl@0: #endif sl@0: sl@0: sl@0: // From ------------------------------------------------// sl@0: sl@0: template < typename LeastInt > sl@0: struct int_fast_t; sl@0: sl@0: template< int Bits > sl@0: struct int_t; sl@0: sl@0: template< int Bits > sl@0: struct uint_t; sl@0: sl@0: template< long MaxValue > sl@0: struct int_max_value_t; sl@0: sl@0: template< long MinValue > sl@0: struct int_min_value_t; sl@0: sl@0: template< unsigned long Value > sl@0: struct uint_value_t; sl@0: sl@0: sl@0: // From -----------------------------------// sl@0: sl@0: template < std::size_t Bit > sl@0: struct high_bit_mask_t; sl@0: sl@0: template < std::size_t Bits > sl@0: struct low_bits_mask_t; sl@0: sl@0: template < > sl@0: struct low_bits_mask_t< ::std::numeric_limits::digits >; sl@0: sl@0: #if USHRT_MAX > UCHAR_MAX sl@0: template < > sl@0: struct low_bits_mask_t< ::std::numeric_limits::digits >; sl@0: #endif sl@0: sl@0: #if UINT_MAX > USHRT_MAX sl@0: template < > sl@0: struct low_bits_mask_t< ::std::numeric_limits::digits >; sl@0: #endif sl@0: sl@0: #if ULONG_MAX > UINT_MAX sl@0: template < > sl@0: struct low_bits_mask_t< ::std::numeric_limits::digits >; sl@0: #endif sl@0: sl@0: sl@0: // From ------------------------------------// sl@0: sl@0: template < unsigned long Value > sl@0: struct static_log2; sl@0: sl@0: template < > sl@0: struct static_log2< 0ul >; sl@0: sl@0: sl@0: // From ---------------------------------// sl@0: sl@0: template < long Value1, long Value2 > sl@0: struct static_signed_min; sl@0: sl@0: template < long Value1, long Value2 > sl@0: struct static_signed_max; sl@0: sl@0: template < unsigned long Value1, unsigned long Value2 > sl@0: struct static_unsigned_min; sl@0: sl@0: template < unsigned long Value1, unsigned long Value2 > sl@0: struct static_unsigned_max; sl@0: sl@0: sl@0: } // namespace boost sl@0: sl@0: sl@0: #endif // BOOST_INTEGER_FWD_HPP