sl@0: // boost cast.hpp header file ----------------------------------------------// sl@0: sl@0: // (C) Copyright Kevlin Henney and Dave Abrahams 1999. sl@0: // 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/conversion for Documentation. sl@0: sl@0: // Revision History sl@0: // 23 JUn 05 numeric_cast removed and redirected to the new verion (Fernando Cacciola) sl@0: // 02 Apr 01 Removed BOOST_NO_LIMITS workarounds and included sl@0: // instead (the workaround did not sl@0: // actually compile when BOOST_NO_LIMITS was defined in sl@0: // any case, so we loose nothing). (John Maddock) sl@0: // 21 Jan 01 Undid a bug I introduced yesterday. numeric_cast<> never sl@0: // worked with stock GCC; trying to get it to do that broke sl@0: // vc-stlport. sl@0: // 20 Jan 01 Moved BOOST_NO_LIMITS_COMPILE_TIME_CONSTANTS to config.hpp. sl@0: // Removed unused BOOST_EXPLICIT_TARGET macro. Moved sl@0: // boost::detail::type to boost/type.hpp. Made it compile with sl@0: // stock gcc again (Dave Abrahams) sl@0: // 29 Nov 00 Remove nested namespace cast, cleanup spacing before Formal sl@0: // Review (Beman Dawes) sl@0: // 19 Oct 00 Fix numeric_cast for floating-point types (Dave Abrahams) sl@0: // 15 Jul 00 Suppress numeric_cast warnings for GCC, Borland and MSVC sl@0: // (Dave Abrahams) sl@0: // 30 Jun 00 More MSVC6 wordarounds. See comments below. (Dave Abrahams) sl@0: // 28 Jun 00 Removed implicit_cast<>. See comment below. (Beman Dawes) sl@0: // 27 Jun 00 More MSVC6 workarounds sl@0: // 15 Jun 00 Add workarounds for MSVC6 sl@0: // 2 Feb 00 Remove bad_numeric_cast ";" syntax error (Doncho Angelov) sl@0: // 26 Jan 00 Add missing throw() to bad_numeric_cast::what(0 (Adam Levar) sl@0: // 29 Dec 99 Change using declarations so usages in other namespaces work sl@0: // correctly (Dave Abrahams) sl@0: // 23 Sep 99 Change polymorphic_downcast assert to also detect M.I. errors sl@0: // as suggested Darin Adler and improved by Valentin Bonnard. sl@0: // 2 Sep 99 Remove controversial asserts, simplify, rename. sl@0: // 30 Aug 99 Move to cast.hpp, replace value_cast with numeric_cast, sl@0: // place in nested namespace. sl@0: // 3 Aug 99 Initial version sl@0: sl@0: #ifndef BOOST_CAST_HPP sl@0: #define BOOST_CAST_HPP sl@0: sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: # include sl@0: sl@0: // It has been demonstrated numerous times that MSVC 6.0 fails silently at link sl@0: // time if you use a template function which has template parameters that don't sl@0: // appear in the function's argument list. sl@0: // sl@0: // TODO: Add this to config.hpp? sl@0: # if defined(BOOST_MSVC) && BOOST_MSVC < 1300 sl@0: # define BOOST_EXPLICIT_DEFAULT_TARGET , ::boost::type* = 0 sl@0: # else sl@0: # define BOOST_EXPLICIT_DEFAULT_TARGET sl@0: # endif sl@0: sl@0: namespace boost sl@0: { sl@0: // See the documentation for descriptions of how to choose between sl@0: // static_cast<>, dynamic_cast<>, polymorphic_cast<> and polymorphic_downcast<> sl@0: sl@0: // polymorphic_cast --------------------------------------------------------// sl@0: sl@0: // Runtime checked polymorphic downcasts and crosscasts. sl@0: // Suggested in The C++ Programming Language, 3rd Ed, Bjarne Stroustrup, sl@0: // section 15.8 exercise 1, page 425. sl@0: sl@0: template sl@0: inline Target polymorphic_cast(Source* x BOOST_EXPLICIT_DEFAULT_TARGET) sl@0: { sl@0: Target tmp = dynamic_cast(x); sl@0: if ( tmp == 0 ) throw std::bad_cast(); sl@0: return tmp; sl@0: } sl@0: sl@0: // polymorphic_downcast ----------------------------------------------------// sl@0: sl@0: // BOOST_ASSERT() checked polymorphic downcast. Crosscasts prohibited. sl@0: sl@0: // WARNING: Because this cast uses BOOST_ASSERT(), it violates sl@0: // the One Definition Rule if used in multiple translation units sl@0: // where BOOST_DISABLE_ASSERTS, BOOST_ENABLE_ASSERT_HANDLER sl@0: // NDEBUG are defined inconsistently. sl@0: sl@0: // Contributed by Dave Abrahams sl@0: sl@0: template sl@0: inline Target polymorphic_downcast(Source* x BOOST_EXPLICIT_DEFAULT_TARGET) sl@0: { sl@0: BOOST_ASSERT( dynamic_cast(x) == x ); // detect logic error sl@0: return static_cast(x); sl@0: } sl@0: sl@0: # undef BOOST_EXPLICIT_DEFAULT_TARGET sl@0: sl@0: } // namespace boost sl@0: sl@0: # include sl@0: sl@0: #endif // BOOST_CAST_HPP