summaryrefslogtreecommitdiff
path: root/doc/html/signals/s05.html
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
committerAnas Nashif <anas.nashif@intel.com>2013-08-26 08:15:55 -0400
commitbb4dd8289b351fae6b55e303f189127a394a1edd (patch)
tree77c9c35a31b1459dd7988c2448e797d142530c41 /doc/html/signals/s05.html
parent1a78a62555be32868418fe52f8e330c9d0f95d5a (diff)
downloadboost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.gz
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.tar.bz2
boost-bb4dd8289b351fae6b55e303f189127a394a1edd.zip
Imported Upstream version 1.51.0upstream/1.51.0
Diffstat (limited to 'doc/html/signals/s05.html')
-rw-r--r--[-rwxr-xr-x]doc/html/signals/s05.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/signals/s05.html b/doc/html/signals/s05.html
index 3ab9d2d4b4..096deec7d5 100755..100644
--- a/doc/html/signals/s05.html
+++ b/doc/html/signals/s05.html
@@ -24,16 +24,16 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
-<a name="id3149052"></a>Design Overview</h2></div></div></div>
+<a name="id3205183"></a>Design Overview</h2></div></div></div>
<div class="toc"><dl>
-<dt><span class="section"><a href="s05.html#id3149057">Type Erasure</a></span></dt>
-<dt><span class="section"><a href="s05.html#id3149127"><code class="computeroutput">connection</code> class</a></span></dt>
-<dt><span class="section"><a href="s05.html#id3149245">Slot Call Iterator</a></span></dt>
-<dt><span class="section"><a href="s05.html#id3149443"><code class="computeroutput">visit_each</code> function template</a></span></dt>
+<dt><span class="section"><a href="s05.html#id3205189">Type Erasure</a></span></dt>
+<dt><span class="section"><a href="s05.html#id3205259"><code class="computeroutput">connection</code> class</a></span></dt>
+<dt><span class="section"><a href="s05.html#id3205376">Slot Call Iterator</a></span></dt>
+<dt><span class="section"><a href="s05.html#id3205575"><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="id3149057"></a>Type Erasure</h3></div></div></div>
+<a name="id3205189"></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
@@ -59,7 +59,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id3149127"></a><code class="computeroutput">connection</code> class</h3></div></div></div>
+<a name="id3205259"></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
@@ -84,7 +84,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id3149245"></a>Slot Call Iterator</h3></div></div></div>
+<a name="id3205376"></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
@@ -160,7 +160,7 @@
</div>
<div class="section">
<div class="titlepage"><div><div><h3 class="title">
-<a name="id3149443"></a><code class="computeroutput">visit_each</code> function template</h3></div></div></div>
+<a name="id3205575"></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