From: bangerth Date: Sun, 9 Oct 2011 20:55:15 +0000 (+0000) Subject: Fix formatting problem. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb3f8d9b082192d9473af858f673b6033cc669ad;p=dealii-svn.git Fix formatting problem. git-svn-id: https://svn.dealii.org/trunk@24587 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/table_handler.h b/deal.II/include/deal.II/base/table_handler.h index ea46588c6a..eb962370fa 100644 --- a/deal.II/include/deal.II/base/table_handler.h +++ b/deal.II/include/deal.II/base/table_handler.h @@ -39,24 +39,24 @@ DEAL_II_NAMESPACE_OPEN * @ingroup textoutput * @author Ralf Hartmann, 1999 */ -class TableEntryBase +class TableEntryBase { public: /** * Constructor. */ TableEntryBase(); - + /** * Virtual destructor. - */ + */ virtual ~TableEntryBase(); - + /** * Write the table entry as text. */ virtual void write_text (std::ostream &) const = 0; - + /** * Write the table entry in tex format. */ @@ -77,7 +77,7 @@ class TableEntryBase * @author Ralf Hartmann, 1999 */ template -class TableEntry : public TableEntryBase +class TableEntry : public TableEntryBase { public: /** @@ -141,10 +141,10 @@ class TableEntry : public TableEntryBase * * A detailed explanation of this class is also given in the step-13 tutorial * program. - * - * + * + * *

Example

- * + * * This is a simple example demonstrating the usage of this class. The * first column includes the numbers i=1..n, the second * $1^2$...$n^2$, the third $sqrt(1)...sqrt(n)$, where the second and @@ -187,7 +187,7 @@ class TableHandler * Constructor. */ TableHandler (); - + /** * Adds a column (if not yet * existent) with the key key @@ -197,7 +197,7 @@ class TableHandler template void add_value (const std::string &key, const value_type value); - + /** * Creates a supercolumn (if not * yet existent) and includes @@ -253,7 +253,7 @@ class TableHandler * and so on. */ void set_column_order (const std::vector &new_order); - + /** * Sets the precision * e.g. double or float variables @@ -287,13 +287,13 @@ class TableHandler /** * Sets the tex caption of the entire - * table for tex output. + * table for tex output. */ void set_tex_table_caption (const std::string &table_caption); /** * Sets the label of this - * table for tex output. + * table for tex output. */ void set_tex_table_label (const std::string &table_label); @@ -312,7 +312,7 @@ class TableHandler /** * Sets the tex output format of * a column, e.g. c, r, - * l, or p{3cm}. The + * l, or p{3cm}. The * default is c. Also if this * function is not called for a * column, the default is preset @@ -332,7 +332,7 @@ class TableHandler * with_header is set to false * (it is true by default), then * no "\documentclass{...}", - * "\begin{document}" and + * "\begin{document}" and * "\end{document}" are used. In * this way the file can be * included into an existing tex @@ -364,7 +364,7 @@ class TableHandler DeclException1 (ExcColumnOrSuperColumnNotExistent, std::string, << "Column or supercolumn <" << arg1 << "> does not exist."); - + /** * Exception */ @@ -398,12 +398,12 @@ class TableHandler * Constructor. */ Column(const std::string &tex_caption); - + /** * Destructor. */ ~Column(); - + /** * List of entries within * this column. They may @@ -417,7 +417,7 @@ class TableHandler * TableEntryBase. */ std::vector entries; - + /** * The caption of the column * in tex output. By @@ -440,7 +440,7 @@ class TableHandler * with "c", "r", "l" for * centered, right or left. */ - + std::string tex_format; /** @@ -486,7 +486,7 @@ class TableHandler * in sel_columns. */ void get_selected_columns (std::vector &sel_columns) const; - + /** * Builtin function, that gives * the number of rows in the @@ -549,8 +549,8 @@ class TableHandler /** * The label of the table. */ - std::string tex_table_label; - + std::string tex_table_label; + }; DEAL_II_NAMESPACE_CLOSE