Fix broken hyperlink

[SVN r10896]
This commit is contained in:
Beman Dawes
2001-08-19 15:08:33 +00:00
parent f79765cce1
commit 50fb80c253

View File

@ -86,7 +86,7 @@ object. Handling argument binding is beyond the scope of Boost.Function. However
</ul> </ul>
<h2><a name="family">The <code>function</code> family</a></h2> <h2><a name="family">The <code>function</code> family</a></h2>
<p> The header &lt;<a href="../../boost/function.hpp">boost/function.hpp</a>&gt; defines the primary entry point to the function object wrappers, the class template <code>boost::function</code>. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, <code>boost::function0</code>, <code>boost::function1</code>, etc., where the number indicates the number of arguments passed to the function object target. The declaration of <code>f</code> above could also be written as: <p> The header &lt;<a href="../../../boost/function.hpp">boost/function.hpp</a>&gt; defines the primary entry point to the function object wrappers, the class template <code>boost::function</code>. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, <code>boost::function0</code>, <code>boost::function1</code>, etc., where the number indicates the number of arguments passed to the function object target. The declaration of <code>f</code> above could also be written as:
<pre> <pre>
boost::function2&lt;float, int, int&gt; f; boost::function2&lt;float, int, int&gt; f;
</pre> </pre>