doc/named-param.dox
author alpar
Mon, 01 Nov 2004 19:00:19 +0000
changeset 954 5b1ffef43d4c
parent 953 d9c115e2eeaf
child 955 0a066f80e05f
permissions -rw-r--r--
Improved docs.
     1 /*!
     2 
     3 \page named-param Named Parameters
     4 
     5 \section named-templ-param Named Template Parameters
     6 
     7 Instead of creating a new traits class you can also use this adaptor class
     8 like this
     9 \code
    10 Dijkstra<>::SetPredNodeMap<NullMap<Node,Node> >
    11 \endcode
    12 It can also be used in conjunction with other named template
    13 parameters in arbitrary order.
    14 \code
    15 Dijkstra<>::SetDistMap<MyMap>::SetPredMap<NullMap<Node,Edge> >
    16 \endcode
    17 
    18 
    19 */