doc/named-param.dox
author deba
Wed, 15 Dec 2004 19:56:55 +0000
changeset 1037 3eaff8d04171
parent 954 5b1ffef43d4c
child 1141 e5ee2726abe4
permissions -rw-r--r--
graph_io under construction
This is a working version, but needs more improvments.

todo:
documention + fix the file format
improve the exception system

add some possible asserts

tutorials
     1 /*!
     2 
     3 \page named-param Named Parameters
     4 
     5 \section named-func-param Named "Function" Parameters
     6 
     7 
     8 \section traits-classes Traits Classes
     9 
    10 \section named-templ-param Named Class Template Parameters
    11 
    12 Instead of creating a new traits class you can also use this adaptor class
    13 like this
    14 \code
    15 Dijkstra<>::SetPredNodeMap<NullMap<Node,Node> >
    16 \endcode
    17 It can also be used in conjunction with other named template
    18 parameters in arbitrary order.
    19 \code
    20 Dijkstra<>::SetDistMap<MyMap>::SetPredMap<NullMap<Node,Edge> >
    21 \endcode
    22 
    23 \section named-templ-func-param Named "Function" Template Parameters
    24 
    25 
    26 */