From 27032ceae857c5973830dd54a319068ed301b511 Mon Sep 17 00:00:00 2001 From: guido Date: Fri, 9 Jan 2004 12:45:21 +0000 Subject: [PATCH] Doc for doxygen git-svn-id: https://svn.dealii.org/trunk@8297 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/parameter_handler.h | 26 ++-- deal.II/base/include/base/polynomial.h | 134 +++++++++--------- deal.II/base/include/base/table_handler.h | 113 ++++++++------- 3 files changed, 137 insertions(+), 136 deletions(-) diff --git a/deal.II/base/include/base/parameter_handler.h b/deal.II/base/include/base/parameter_handler.h index 0ef677ecbf..d618160a48 100644 --- a/deal.II/base/include/base/parameter_handler.h +++ b/deal.II/base/include/base/parameter_handler.h @@ -304,8 +304,8 @@ namespace Patterns public: /** * Minimal double value. If the - * @ref numeric_limits class is - * available use this + * std::numeric_limits + * class is available use this * information to obtain the * extremal values, otherwise * set it so that this class @@ -754,7 +754,7 @@ namespace Patterns * structure. * * - * @section Declaration Declaration of entries + * @section ParameterHandlerDeclaration Declaration of entries * * In order to use the facilities of a ParameterHandler object, one first has * to make known the different entries the input file may or may not contain. This @@ -847,7 +847,7 @@ namespace Patterns * @endcode * * - * @section Input Input files and special characters + * @section ParameterHandlerInput Input files and special characters * * For the first example above the input file would look like the following: * @verbatim @@ -877,7 +877,7 @@ namespace Patterns * = sign. * * - * @section Reading Reading data from input sources + * @section ParameterHandlerReading Reading data from input sources * * In order to read input you can use three possibilities: reading from an std::istream object, * reading from a file of which the name is given and reading from a string in memory in @@ -907,7 +907,7 @@ namespace Patterns * written to std::cerr. * * - * @section Access Getting entry values out of a ParameterHandler object + * @section ParameterHandlerAccess Getting entry values out of a ParameterHandler object * * Each class gets its data out of a ParameterHandler object by * calling the get() member functions like this: @@ -946,7 +946,7 @@ namespace Patterns * input file. * * - * @section Style Style guide for data retrieval + * @section ParameterHandlerStyle Style guide for data retrieval * * We propose that every class which gets data out of a * ParameterHandler object provides a function named @@ -955,7 +955,7 @@ namespace Patterns * should call the BaseClass::get_parameters function. * * - * @section Large Experience with large parameter lists + * @section ParameterHandlerLarge Experience with large parameter lists * * Experience has shown that in programs defining larger numbers of parameters (more than, * say, fifty) it is advantageous to define an additional class holding these parameters. @@ -969,7 +969,7 @@ namespace Patterns * up your main class with dozens or more variables denoting the parameters. * * - * @section Future Possible future extensions + * @section ParameterHandlerFuture Possible future extensions * *