From 50fb80c253dab590cd45a08557f08c857de8d67c Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sun, 19 Aug 2001 15:08:33 +0000 Subject: [PATCH] Fix broken hyperlink [SVN r10896] --- doc/tutorial.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.html b/doc/tutorial.html index 891b728..195f954 100644 --- a/doc/tutorial.html +++ b/doc/tutorial.html @@ -86,7 +86,7 @@ object. Handling argument binding is beyond the scope of Boost.Function. However

The function family

-

The header <boost/function.hpp> defines the primary entry point to the function object wrappers, the class template boost::function. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, boost::function0, boost::function1, etc., where the number indicates the number of arguments passed to the function object target. The declaration of f above could also be written as: +

The header <boost/function.hpp> defines the primary entry point to the function object wrappers, the class template boost::function. This class template is essentially a thin wrapper around a set of similar numbered function object wrappers, boost::function0, boost::function1, etc., where the number indicates the number of arguments passed to the function object target. The declaration of f above could also be written as:

 boost::function2<float, int, int> f;