Commit cfc0f1be authored by Davis King's avatar Davis King

updated docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403943
parent 30e8807f
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
<section> <section>
<name>Objects</name> <name>Objects</name>
<item>static_set</item> <item>static_set</item>
<item>any</item>
<item>array</item> <item>array</item>
<item>array2d</item> <item>array2d</item>
<item>binary_search_tree</item> <item>binary_search_tree</item>
...@@ -1157,6 +1158,25 @@ ...@@ -1157,6 +1158,25 @@
</component> </component>
<!-- ************************************************************************* -->
<component>
<name>any</name>
<file>dlib/any.h</file>
<spec_file link="true">dlib/any/any_abstract.h</spec_file>
<description>
This object is basically a type-safe version of a void*. In particular,
it is a container which can contain only one object but the object may
be of any type.
<p>
It is somewhat like the <a href="#type_safe_union">type_safe_union</a> except you don't have to declare
the set of possible content types beforehand. So in some sense this is
like a less type-strict version of the type_safe_union.
</p>
</description>
</component>
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
......
...@@ -838,6 +838,7 @@ ...@@ -838,6 +838,7 @@
<term file="containers.html" name="sliding_buffer"/> <term file="containers.html" name="sliding_buffer"/>
<term file="containers.html" name="static_map"/> <term file="containers.html" name="static_map"/>
<term file="containers.html" name="static_set"/> <term file="containers.html" name="static_set"/>
<term file="containers.html" name="any"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment