doc/graph_orientation.dox
changeset 2172 4b25e7003868
parent 2158 0b620ff10e7c
child 2310 96cca167430a
     1.1 --- a/doc/graph_orientation.dox	Thu Aug 10 10:11:07 2006 +0000
     1.2 +++ b/doc/graph_orientation.dox	Thu Aug 10 10:18:04 2006 +0000
     1.3 @@ -53,9 +53,22 @@
     1.4  following line seems to be useful.
     1.5  \skipline namespace
     1.6  
     1.7 -The following <tt>typedef</tt>s will also save a lot of typing.
     1.8 -\skip typedef
     1.9 -\until InEdgeIt
    1.10 +The following macro will also save a lot of typing by defining some
    1.11 +convenience <tt>typedef</tt>s.
    1.12 +
    1.13 +\skipline TYPEDEF
    1.14 +
    1.15 +Actually, the macro above would be equivalent with the following
    1.16 +<tt>typedef</tt>s.
    1.17 +
    1.18 +\code
    1.19 +typedef ListGraph::Node Node;
    1.20 +typedef ListGraph::NodeIt NodeIt;
    1.21 +typedef ListGraph::Edge Edge;
    1.22 +typedef ListGraph::EdgeIt EdgeIt;
    1.23 +typedef ListGraph::OutEdgeIt OutEdgeIt;
    1.24 +typedef ListGraph::InEdgeIt InEdgeIt;
    1.25 +\endcode
    1.26  
    1.27  \subsection go-alg-main The main() function
    1.28  
    1.29 @@ -152,7 +165,7 @@
    1.30  \c bool values of
    1.31  \c rev are transformed into different \ref lemon::Color "RGB color"s
    1.32  using the class
    1.33 -\ref lemon::ColorSet "ColorSet"
    1.34 +\ref lemon::Palette "Palette"
    1.35  and the \ref map_adaptors "map adaptor" called
    1.36  \ref lemon::ComposeMap "composeMap".
    1.37