updated docs

This commit is contained in:
Davis King 2012-11-18 12:13:56 -05:00
parent 2ce5a85722
commit ed9f16adc6
1 changed files with 7 additions and 23 deletions

View File

@ -345,35 +345,19 @@
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component checked="true"> <component>
<name>bound_function_pointer</name> <name>bound_function_pointer</name>
<file>dlib/bound_function_pointer.h</file> <file>dlib/bound_function_pointer.h</file>
<spec_file>dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h</spec_file> <spec_file>dlib/bound_function_pointer/bound_function_pointer_kernel_abstract.h</spec_file>
<description> <description>
This object represents a function with all its arguments bound to specific objects. This object represents a function with all its arguments bound to specific objects.
<p>
This implementation is done using type erasure and placement new. This
means that it never allocates memory on the heap and instead stores everything
on the stack.
</p>
</description> </description>
<implementations>
<implementation>
<name>bound_function_pointer_kernel_1</name>
<file>dlib/bound_function_pointer/bound_function_pointer_kernel_1.h</file>
<description>
This implementation is done using type erasure and placement new. This
means that it never allocates memory on the heap and instead stores everything
on the stack.
</description>
<typedefs>
<typedef>
<name>kernel_1a</name>
<description>is a typedef for bound_function_pointer_kernel_1</description>
</typedef>
</typedefs>
</implementation>
</implementations>
</component> </component>