From a4947d363a929d501a37f098d54848e42f825e02 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 30 Nov 2001 13:18:42 +0000 Subject: [PATCH] Move the OutputStyle enum to the ParameterHandler class. git-svn-id: https://svn.dealii.org/trunk@5319 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/parameter_handler.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/deal.II/base/include/base/parameter_handler.h b/deal.II/base/include/base/parameter_handler.h index 233a3efc52..5b2df7af7f 100644 --- a/deal.II/base/include/base/parameter_handler.h +++ b/deal.II/base/include/base/parameter_handler.h @@ -37,14 +37,6 @@ class MultipleParameterLoop; class LogStream; -/** - * List of possible output formats. - */ -enum OutputStyle { - Text, LaTeX, HTML -}; - - /** * Declare some regexps which @@ -1024,6 +1016,16 @@ namespace Patterns class ParameterHandler { public: + /** + * List of possible output + * formats. + */ + enum OutputStyle { + Text, LaTeX, HTML + }; + + + /** * Constructor. */ -- 2.39.5