From: Wolfgang Bangerth Date: Mon, 20 Mar 2000 08:43:14 +0000 (+0000) Subject: Mark classes as obsolete. X-Git-Tag: v8.0.0~20775 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16cd75fad17fe2a64972c9bacc3fce9cf9f02606;p=dealii.git Mark classes as obsolete. git-svn-id: https://svn.dealii.org/trunk@2598 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/assembler.h b/deal.II/deal.II/include/numerics/assembler.h index 03c28129e4..d571b4930e 100644 --- a/deal.II/deal.II/include/numerics/assembler.h +++ b/deal.II/deal.II/include/numerics/assembler.h @@ -24,6 +24,8 @@ /** + * The use of this class is now deprecated! + * * This is the base class for equation objects. Equations objects describe the * finite element discretisation of one or more equations. * @@ -34,7 +36,8 @@ * @author Wolfgang Bangerth, 1998 */ template -class Equation { +class Equation +{ public: /** * Constructor. You have to pass the number @@ -129,14 +132,18 @@ class Equation { }; + /** + * The use of this class is now deprecated! + * * An #Assembler# is a specialized version of a #DoFCellAccessor# which adds * functionality to assemble global matrices and vectors from cell base ones. * * @author Wolfgang Bangerth, 1998 */ template -class Assembler : public DoFCellAccessor { +class Assembler : public DoFCellAccessor +{ public: /** @@ -207,7 +214,7 @@ class Assembler : public DoFCellAccessor { }; -/** + /** * Declare the data type that this accessor * class expects to get passed from the * iterator classes.