doc/named-param.dox
changeset 1712 4fb435ad31cf
parent 1624 61cc647dac99
child 1713 49d22d34d95f
equal deleted inserted replaced
7:86d58126234e 8:fb25531f608b
    80 the class contains named parameters, we do not have to reinstantiate
    80 the class contains named parameters, we do not have to reinstantiate
    81 the class with new traits class. Instead of that, adaptor classes can
    81 the class with new traits class. Instead of that, adaptor classes can
    82 be used like in the following cases.
    82 be used like in the following cases.
    83 
    83 
    84 \code
    84 \code
    85 Dijkstra<>::SetPredNodeMap<NullMap<Node,Node> >
    85 Dijkstra<>::SetPredNodeMap<NullMap<Node,Node> >::Create
    86 \endcode
    86 \endcode
    87 
    87 
    88 It can also be used in conjunction with other named template
    88 It can also be used in conjunction with other named template
    89 parameters in arbitrary order.
    89 parameters in arbitrary order.
    90 
    90 
    91 \code
    91 \code
    92 Dijkstra<>::SetDistMap<MyMap>::SetPredMap<NullMap<Node,Edge> >
    92 Dijkstra<>::SetDistMap<MyMap>::SetPredMap<NullMap<Node,Edge> >::Create
    93 \endcode
    93 \endcode
    94 
    94 
    95 The result will be an instantiated Dijkstra class, in which the
    95 The result will be an instantiated Dijkstra class, in which the
    96 DistMap and the PredMap is modified.
    96 DistMap and the PredMap is modified.
    97 
    97