sl@0: /* boost integer_traits.hpp header file sl@0: * sl@0: * Copyright Jens Maurer 2000 sl@0: * Distributed under the Boost Software License, Version 1.0. (See sl@0: * accompanying file LICENSE_1_0.txt or copy at sl@0: * http://www.boost.org/LICENSE_1_0.txt) sl@0: * sl@0: * $Id: integer_traits.hpp,v 1.30 2006/02/05 10:19:42 johnmaddock Exp $ sl@0: * sl@0: * Idea by Beman Dawes, Ed Brey, Steve Cleary, and Nathan Myers sl@0: */ sl@0: sl@0: // See http://www.boost.org/libs/integer for documentation. sl@0: sl@0: sl@0: #ifndef BOOST_INTEGER_TRAITS_HPP sl@0: #define BOOST_INTEGER_TRAITS_HPP sl@0: sl@0: #include sl@0: #include sl@0: sl@0: // These are an implementation detail and not part of the interface sl@0: #include sl@0: // we need wchar.h for WCHAR_MAX/MIN but not all platforms provide it, sl@0: // and some may have but not ... sl@0: #if !defined(BOOST_NO_INTRINSIC_WCHAR_T) && (!defined(BOOST_NO_CWCHAR) || defined(sun) || defined(__sun) || defined(__QNX__)) sl@0: #include sl@0: #endif sl@0: sl@0: sl@0: namespace boost { sl@0: template sl@0: class integer_traits : public std::numeric_limits sl@0: { sl@0: public: sl@0: BOOST_STATIC_CONSTANT(bool, is_integral = false); sl@0: }; sl@0: sl@0: namespace detail { sl@0: template sl@0: class integer_traits_base sl@0: { sl@0: public: sl@0: BOOST_STATIC_CONSTANT(bool, is_integral = true); sl@0: BOOST_STATIC_CONSTANT(T, const_min = min_val); sl@0: BOOST_STATIC_CONSTANT(T, const_max = max_val); sl@0: }; sl@0: sl@0: #ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION sl@0: // A definition is required even for integral static constants sl@0: template sl@0: const bool integer_traits_base::is_integral; sl@0: sl@0: template sl@0: const T integer_traits_base::const_min; sl@0: sl@0: template sl@0: const T integer_traits_base::const_max; sl@0: #endif sl@0: sl@0: } // namespace detail sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: #ifndef BOOST_NO_INTRINSIC_WCHAR_T sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: // Don't trust WCHAR_MIN and WCHAR_MAX with Mac OS X's native sl@0: // library: they are wrong! sl@0: #if defined(WCHAR_MIN) && defined(WCHAR_MAX) && !defined(__APPLE__) sl@0: public detail::integer_traits_base sl@0: #elif defined(__BORLANDC__) || defined(__CYGWIN__) || defined(__MINGW32__) || (defined(__BEOS__) && defined(__GNUC__)) sl@0: // No WCHAR_MIN and WCHAR_MAX, whar_t is short and unsigned: sl@0: public detail::integer_traits_base sl@0: #elif (defined(__sgi) && (!defined(__SGI_STL_PORT) || __SGI_STL_PORT < 0x400))\ sl@0: || (defined __APPLE__)\ sl@0: || (defined(__OpenBSD__) && defined(__GNUC__))\ sl@0: || (defined(__NetBSD__) && defined(__GNUC__))\ sl@0: || (defined(__FreeBSD__) && defined(__GNUC__))\ sl@0: || (defined(__DragonFly__) && defined(__GNUC__))\ sl@0: || (defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 3) && !defined(__SGI_STL_PORT)) sl@0: // No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as int. sl@0: // - SGI MIPSpro with native library sl@0: // - gcc 3.x on HP-UX sl@0: // - Mac OS X with native library sl@0: // - gcc on FreeBSD, OpenBSD and NetBSD sl@0: public detail::integer_traits_base sl@0: #elif defined(__hpux) && defined(__GNUC__) && (__GNUC__ == 2) && !defined(__SGI_STL_PORT) sl@0: // No WCHAR_MIN and WCHAR_MAX, wchar_t has the same range as unsigned int. sl@0: // - gcc 2.95.x on HP-UX sl@0: // (also, std::numeric_limits appears to return the wrong values). sl@0: public detail::integer_traits_base sl@0: #else sl@0: #error No WCHAR_MIN and WCHAR_MAX present, please adjust integer_traits<> for your compiler. sl@0: #endif sl@0: { }; sl@0: #endif // BOOST_NO_INTRINSIC_WCHAR_T sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits sl@0: : public std::numeric_limits, sl@0: public detail::integer_traits_base sl@0: { }; sl@0: sl@0: #if !defined(BOOST_NO_INTEGRAL_INT64_T) && !defined(BOOST_NO_INT64_T) sl@0: #if defined(ULLONG_MAX) && defined(BOOST_HAS_LONG_LONG) sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::long_long_type> sl@0: : public std::numeric_limits< ::boost::long_long_type>, sl@0: public detail::integer_traits_base< ::boost::long_long_type, LLONG_MIN, LLONG_MAX> sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::ulong_long_type> sl@0: : public std::numeric_limits< ::boost::ulong_long_type>, sl@0: public detail::integer_traits_base< ::boost::ulong_long_type, 0, ULLONG_MAX> sl@0: { }; sl@0: sl@0: #elif defined(ULONG_LONG_MAX) && defined(BOOST_HAS_LONG_LONG) sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::long_long_type> : public std::numeric_limits< ::boost::long_long_type>, public detail::integer_traits_base< ::boost::long_long_type, LONG_LONG_MIN, LONG_LONG_MAX>{ }; sl@0: template<> sl@0: class integer_traits< ::boost::ulong_long_type> sl@0: : public std::numeric_limits< ::boost::ulong_long_type>, sl@0: public detail::integer_traits_base< ::boost::ulong_long_type, 0, ULONG_LONG_MAX> sl@0: { }; sl@0: sl@0: #elif defined(ULONGLONG_MAX) && defined(BOOST_HAS_LONG_LONG) sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::long_long_type> sl@0: : public std::numeric_limits< ::boost::long_long_type>, sl@0: public detail::integer_traits_base< ::boost::long_long_type, LONGLONG_MIN, LONGLONG_MAX> sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::ulong_long_type> sl@0: : public std::numeric_limits< ::boost::ulong_long_type>, sl@0: public detail::integer_traits_base< ::boost::ulong_long_type, 0, ULONGLONG_MAX> sl@0: { }; sl@0: sl@0: #elif defined(_LLONG_MAX) && defined(_C2) && defined(BOOST_HAS_LONG_LONG) sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::long_long_type> sl@0: : public std::numeric_limits< ::boost::long_long_type>, sl@0: public detail::integer_traits_base< ::boost::long_long_type, -_LLONG_MAX - _C2, _LLONG_MAX> sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::ulong_long_type> sl@0: : public std::numeric_limits< ::boost::ulong_long_type>, sl@0: public detail::integer_traits_base< ::boost::ulong_long_type, 0, _ULLONG_MAX> sl@0: { }; sl@0: sl@0: #elif defined(BOOST_HAS_LONG_LONG) sl@0: // sl@0: // we have long long but no constants, this happens for example with gcc in -ansi mode, sl@0: // we'll just have to work out the values for ourselves (assumes 2's compliment representation): sl@0: // sl@0: template<> sl@0: class integer_traits< ::boost::long_long_type> sl@0: : public std::numeric_limits< ::boost::long_long_type>, sl@0: public detail::integer_traits_base< ::boost::long_long_type, (1LL << (sizeof(::boost::long_long_type) - 1)), ~(1LL << (sizeof(::boost::long_long_type) - 1))> sl@0: { }; sl@0: sl@0: template<> sl@0: class integer_traits< ::boost::ulong_long_type> sl@0: : public std::numeric_limits< ::boost::ulong_long_type>, sl@0: public detail::integer_traits_base< ::boost::ulong_long_type, 0, ~0uLL> sl@0: { }; sl@0: sl@0: #endif sl@0: #endif sl@0: sl@0: } // namespace boost sl@0: sl@0: #endif /* BOOST_INTEGER_TRAITS_HPP */ sl@0: sl@0: sl@0: