diff -r e455fafbd663 -r f0700b9e6418 doc/named-param.dox --- a/doc/named-param.dox Tue Aug 09 14:41:39 2005 +0000 +++ b/doc/named-param.dox Wed Aug 10 19:23:51 2005 +0000 @@ -1,4 +1,4 @@ -/*! +*! \page named-param Named Parameters @@ -44,7 +44,7 @@ We have to define a class, let's call it named_fn. Let us assume that we would like to use a parameter, called X. In the named_fn class we -have to define an _X attribute, and an X function. The function +have to define an _X attribute, and a function X. The function expects a parameter with the type of _X, and sets the value of _X. After setting the value the function returns the class itself. The class also have to have a function, called for example run(), we have @@ -53,8 +53,8 @@ them. If we instantiate this class, the default values will be set for the -attributes (originally the parameters), initially. If we call the X -function, we get a class with the modified parameter value of +attributes (originally the parameters), initially. If we call function +X, we get a class with the modified parameter value of X. Therefore we can modify any parameter-value, independent from the order. To run the algorithm we have to call the run() function at the end of the row.