From: Wolfgang Bangerth Date: Fri, 30 Nov 2001 13:18:42 +0000 (+0000) Subject: Move the OutputStyle enum to the ParameterHandler class. X-Git-Tag: v8.0.0~18516 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=979d2a49bf5d889c5c66de34ac11c1edefdaa269;p=dealii.git Move the OutputStyle enum to the ParameterHandler class. git-svn-id: https://svn.dealii.org/trunk@5319 0785d39b-7218-0410-832d-ea1e28bc413d --- 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. */