...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::typeindex::runtime_cast — Safely converts references to classes up, down, and sideways along the inheritance hierarchy.
// In header: <boost/type_index/runtime_cast/reference_cast.hpp> template<typename T, typename U> boost::add_reference< T >::type runtime_cast(U & u);
Template Parameters: |
|
||||
Returns: |
If there exists a valid conversion from U& to T, returns a T that references an address suitably offset from u. If no such conversion exists, throws boost::typeindex::bad_runtime_cast. |