diff -r f40343b498ef -r 4b25e7003868 doc/graph_orientation.dox --- a/doc/graph_orientation.dox Thu Aug 10 10:11:07 2006 +0000 +++ b/doc/graph_orientation.dox Thu Aug 10 10:18:04 2006 +0000 @@ -53,9 +53,22 @@ following line seems to be useful. \skipline namespace -The following typedefs will also save a lot of typing. -\skip typedef -\until InEdgeIt +The following macro will also save a lot of typing by defining some +convenience typedefs. + +\skipline TYPEDEF + +Actually, the macro above would be equivalent with the following +typedefs. + +\code +typedef ListGraph::Node Node; +typedef ListGraph::NodeIt NodeIt; +typedef ListGraph::Edge Edge; +typedef ListGraph::EdgeIt EdgeIt; +typedef ListGraph::OutEdgeIt OutEdgeIt; +typedef ListGraph::InEdgeIt InEdgeIt; +\endcode \subsection go-alg-main The main() function @@ -152,7 +165,7 @@ \c bool values of \c rev are transformed into different \ref lemon::Color "RGB color"s using the class -\ref lemon::ColorSet "ColorSet" +\ref lemon::Palette "Palette" and the \ref map_adaptors "map adaptor" called \ref lemon::ComposeMap "composeMap".