From 9a09d9e044ecc7b2c5b29ec7162fc34e3ac84ced Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 10 Oct 2002 05:40:42 +0000 Subject: [PATCH] index.html: Make valid HTML 4.01 [SVN r15839] --- index.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 1823970..b5c59f4 100644 --- a/index.html +++ b/index.html @@ -1,12 +1,14 @@ - + + + Boost.Function - + -

Header <boost/function.hpp>

+

C++ BoostHeader <boost/function.hpp>

The header <boost/function.hpp> includes a family of class templates that are function object wrappers. The notion is similar to a generalized callback. It shares features with function pointers in that both define a call interface (e.g., a function taking two integer arguments and returning a floating-point value) through which some implementation can be called, and the implementation that is invoked may change throughout the course of the program. @@ -24,7 +26,7 @@

  • Frequently Asked Questions
  • -

    Compatibility Note

    +

    Compatibility Note

    Version 1.30.0: All deprecated features have been removed from Boost.Function. @@ -79,7 +81,7 @@ from Boost.Function.

  • Boost.Function can be adapted to perform operations before and after each call, allowing, for instance, synchronization primitives to be made part of the function type.
  • -And, of course, function pointers have several advantages over Boost.Function: +

    And, of course, function pointers have several advantages over Boost.Function: