summaryrefslogtreecommitdiff
path: root/doc/html/signals/s05.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/signals/s05.html')
-rw-r--r--doc/html/signals/s05.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/html/signals/s05.html b/doc/html/signals/s05.html
index 77e9033f7c..410ca108f5 100644
--- a/doc/html/signals/s05.html
+++ b/doc/html/signals/s05.html
@@ -25,16 +25,16 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="idp521385984"></a>Design Overview</h2></div></div></div>
+<a name="idp505119392"></a>Design Overview</h2></div></div></div>
<div class="toc"><dl class="toc">
-<dt><span class="section"><a href="s05.html#idp521387008">Type Erasure</a></span></dt>
-<dt><span class="section"><a href="s05.html#idp521394272"><code class="computeroutput">connection</code> class</a></span></dt>
-<dt><span class="section"><a href="s05.html#idp521407536">Slot Call Iterator</a></span></dt>
-<dt><span class="section"><a href="s05.html#idp521429344"><code class="computeroutput">visit_each</code> function template</a></span></dt>
+<dt><span class="section"><a href="s05.html#idp505120416">Type Erasure</a></span></dt>
+<dt><span class="section"><a href="s05.html#idp505127680"><code class="computeroutput">connection</code> class</a></span></dt>
+<dt><span class="section"><a href="s05.html#idp505140944">Slot Call Iterator</a></span></dt>
+<dt><span class="section"><a href="s05.html#idp505163232"><code class="computeroutput">visit_each</code> function template</a></span></dt>
</dl></div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp521387008"></a>Type Erasure</h3></div></div></div>
+<a name="idp505120416"></a>Type Erasure</h3></div></div></div>
<p>"Type erasure", where static type information is eliminated
by the use of dynamically dispatched interfaces, is used
extensively within the Boost.Signals library to reduce the amount
@@ -60,7 +60,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp521394272"></a><code class="computeroutput">connection</code> class</h3></div></div></div>
+<a name="idp505127680"></a><code class="computeroutput">connection</code> class</h3></div></div></div>
<p> The <code class="computeroutput"><a class="link" href="../boost/signals/connection.html" title="Class connection">connection</a></code> class is
central to the behavior of the Boost.Signals library. It is the
only entity within the Boost.Signals system that has knowledge of
@@ -85,7 +85,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp521407536"></a>Slot Call Iterator</h3></div></div></div>
+<a name="idp505140944"></a>Slot Call Iterator</h3></div></div></div>
<p> The slot call iterator is conceptually a stack of iterator
adaptors that modify the behavior of the underlying iterator
through the list of slots. The following table describes the type
@@ -131,7 +131,7 @@
<tr>
<td align="left"><p>Transform Iterator Adaptor</p></td>
<td align="left"><p>This transform iterator adaptor performs an
- <code class="computeroutput"><a class="link" href="../boost/any_cast_idp424620208.html" title="Function any_cast">any_cast</a></code> to
+ <code class="computeroutput"><a class="link" href="../boost/any_cast_idp442728704.html" title="Function any_cast">any_cast</a></code> to
extract a reference to the slot function with the
appropriate slot function type.</p></td>
</tr>
@@ -161,7 +161,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="idp521429344"></a><code class="computeroutput">visit_each</code> function template</h3></div></div></div>
+<a name="idp505163232"></a><code class="computeroutput">visit_each</code> function template</h3></div></div></div>
<p> The <code class="computeroutput"><a class="link" href="../boost/visit_each.html" title="Function template visit_each">visit_each</a></code>
function template is a mechanism for discovering objects that are
stored within another object. Function template