/boost_1_57_0/doc/html/boost/typeindex/type_id_runtime.html
HTML | 98 lines | 95 code | 3 blank | 0 comment | 0 complexity | f9a3463eae4ac8c9d2f804b4bb2671b5 MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-3.0, GPL-3.0, GPL-2.0
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
- <title>Function template type_id_runtime</title>
- <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
- <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
- <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
- <link rel="up" href="../../boost_typeindex_header_reference.html#header.boost.type_index_hpp" title="Header <boost/type_index.hpp>">
- <link rel="prev" href="type_id_with_cvr.html" title="Function template type_id_with_cvr">
- <link rel="next" href="../../BOOST_TYPE_INDEX_REGISTER_CLASS.html" title="Macro BOOST_TYPE_INDEX_REGISTER_CLASS">
- </head>
- <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
- <table cellpadding="2" width="100%"><tr>
- <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td>
- <td align="center"><a href="../../../../index.html">Home</a></td>
- <td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td>
- <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
- <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
- <td align="center"><a href="../../../../more/index.htm">More</a></td>
- </tr></table>
- <hr>
- <div class="spirit-nav">
- <a accesskey="p" href="type_id_with_cvr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeindex_header_reference.html#header.boost.type_index_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../BOOST_TYPE_INDEX_REGISTER_CLASS.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
- </div>
- <div class="refentry">
- <a name="boost.typeindex.type_id_runtime"></a><div class="titlepage"></div>
- <div class="refnamediv">
- <h2><span class="refentrytitle">Function template type_id_runtime</span></h2>
- <p>boost::typeindex::type_id_runtime</p>
- </div>
- <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
- <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../boost_typeindex_header_reference.html#header.boost.type_index_hpp" title="Header <boost/type_index.hpp>">boost/type_index.hpp</a>>
- </span>
- <span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> T<span class="special">></span> <span class="identifier">type_index</span> <span class="identifier">type_id_runtime</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">T</span> <span class="special">&</span> runtime_val<span class="special">)</span><span class="special">;</span></pre></div>
- <div class="refsect1">
- <a name="idp482619040"></a><h2>Description</h2>
- <p>Function that works exactly like C++ typeid(rtti_val) call, but returns boost::type_index.</p>
- <p>Retunrs runtime information about specified type.</p>
- <p><span class="bold"><strong>Requirements:</strong></span> RTTI available or Base and Derived classes must be marked with BOOST_TYPE_INDEX_REGISTER_CLASS.</p>
- <p><span class="bold"><strong>Example:</strong></span> </p>
- <pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">Base</span> <span class="special">{</span> <span class="keyword">virtual</span> <span class="special">~</span><span class="identifier">Base</span><span class="special">(</span><span class="special">)</span><span class="special">{</span><span class="special">}</span> <span class="special">}</span><span class="special">;</span>
- <span class="keyword">struct</span> <span class="identifier">Derived</span><span class="special">:</span> <span class="keyword">public</span> <span class="identifier">Base</span> <span class="special">{</span><span class="special">}</span><span class="special">;</span>
- <span class="special">...</span>
- <span class="identifier">Derived</span> <span class="identifier">d</span><span class="special">;</span>
- <span class="identifier">Base</span><span class="special">&</span> <span class="identifier">b</span> <span class="special">=</span> <span class="identifier">d</span><span class="special">;</span>
- <span class="identifier">type_index</span> <span class="identifier">ti</span> <span class="special">=</span> <span class="identifier">type_id_runtime</span><span class="special">(</span><span class="identifier">b</span><span class="special">)</span><span class="special">;</span>
- <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special"><<</span> <span class="identifier">ti</span><span class="special">.</span><span class="identifier">pretty_name</span><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="comment">// Outputs 'Derived'</span>
- </pre>
- <p>
- </p>
- <div class="variablelist"><table border="0" class="variablelist compact">
- <colgroup>
- <col align="left" valign="top">
- <col>
- </colgroup>
- <tbody>
- <tr>
- <td><p><span class="term">Parameters:</span></p></td>
- <td><div class="variablelist"><table border="0" class="variablelist compact">
- <colgroup>
- <col align="left" valign="top">
- <col>
- </colgroup>
- <tbody><tr>
- <td><p><span class="term"><code class="computeroutput">runtime_val</code></span></p></td>
- <td><p>Varaible which runtime type must be returned. </p></td>
- </tr></tbody>
- </table></div></td>
- </tr>
- <tr>
- <td><p><span class="term">Returns:</span></p></td>
- <td><p>boost::typeindex::type_index with information about the specified variable. </p></td>
- </tr>
- <tr>
- <td><p><span class="term">Throws:</span></p></td>
- <td>Nothing. </td>
- </tr>
- </tbody>
- </table></div>
- </div>
- </div>
- <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
- <td align="left"></td>
- <td align="right"><div class="copyright-footer">Copyright © 2012-2014 Antony Polukhin<p>
- Distributed under the Boost Software License, Version 1.0. (See accompanying
- file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
- </p>
- </div></td>
- </tr></table>
- <hr>
- <div class="spirit-nav">
- <a accesskey="p" href="type_id_with_cvr.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_typeindex_header_reference.html#header.boost.type_index_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../../BOOST_TYPE_INDEX_REGISTER_CLASS.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
- </div>
- </body>
- </html>