updated docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402506
This commit is contained in:
Davis King 2008-09-07 03:17:44 +00:00
parent bfad8f3ef6
commit 4681209e19
4 changed files with 29 additions and 3 deletions

View File

@ -40,6 +40,7 @@
<item>enable_if</item>
<item>is_graph</item>
<item>is_matrix</item>
<item>is_std_vector</item>
<item>is_directed_graph</item>
<item>is_built_in_scalar_type</item>
<item>unsigned_type</item>
@ -219,6 +220,20 @@
<!-- ************************************************************************* -->
<component>
<name>is_std_vector</name>
<file>dlib/is_kind.h</file>
<spec_file link="true">dlib/is_kind.h</spec_file>
<description>
This is a template where is_std_vector&lt;T&gt;::value == true when T
is a <a href="containers.html#std_vector_c">std_vector_c</a> or std::vector object.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>is_matrix</name>
<file>dlib/is_kind.h</file>

View File

@ -16,8 +16,21 @@ New Stuff:
Non-Backwards Compatible Changes:
Bug fixes:
- Fixed a bug in the tooltip widget
- Fixed the cmake option to toggle the ENABLE_ASSERTS macro
- Fixed some bugs in the rvm
- Fixed the serialization code for the kkmeans object so that it actually
works
- Fixed a bug that can trigger when the thread_specific_data object is
destructed
- Fixed a bug in the directory navigation gui. If you tried to go
into a drive on windows that wasn't mounted you got an error.
This is now fixed.
Other:
- Made the dir_nav stuff work with std::vector and dlib::std_vector_c
as well as dlib::queue objects.
- Generally cleaned up a bunch of things
</current>

View File

@ -597,6 +597,7 @@
<term link="metaprogramming.html#static_switch" name="static_switch"/>
<term link="metaprogramming.html#is_graph" name="is_graph"/>
<term link="metaprogramming.html#is_matrix" name="is_matrix"/>
<term link="metaprogramming.html#is_std_vector" name="is_std_vector"/>
<term link="metaprogramming.html#is_directed_graph" name="is_directed_graph"/>
<term link="metaprogramming.html#is_built_in_scalar_type" name="is_built_in_scalar_type"/>
<term link="metaprogramming.html#assign_zero_if_built_in_scalar_type" name="assign_zero_if_built_in_scalar_type"/>

View File

@ -4,9 +4,6 @@ maybe add a function to find the distance between two column vectors
reader and directory capable of using std::vector
move all the function bodies in widgets.h to cpp.