From: Wolfgang Bangerth Date: Mon, 27 Jul 1998 22:13:23 +0000 (+0000) Subject: Doc update X-Git-Tag: v8.0.0~22795 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e74c6df28e13fe6973df13add35cf286a1df02d;p=dealii.git Doc update git-svn-id: https://svn.dealii.org/trunk@459 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_lib.lagrange.h b/deal.II/deal.II/include/fe/fe_lib.lagrange.h index 22da61caf8..d9de154256 100644 --- a/deal.II/deal.II/include/fe/fe_lib.lagrange.h +++ b/deal.II/deal.II/include/fe/fe_lib.lagrange.h @@ -84,6 +84,8 @@ class FELinear : public FELinearMapping { * Define a (bi-, tri-, etc)quadratic finite element in #dim# space dimensions. * A linear (subparametric) mapping from the unit cell * to the real cell is implemented. + * + * @author Wolfgang Bangerth, 1998 */ template class FEQuadraticSub : public FELinearMapping { @@ -164,6 +166,8 @@ class FEQuadraticSub : public FELinearMapping { * Note the reverse ordering of degrees of freedom on the left and upper * line and the counterclockwise numbering of the interior degrees of * freedom. + * + * @author Wolfgang Bangerth, 1998 */ template class FECubicSub : public FELinearMapping { @@ -245,6 +249,8 @@ class FECubicSub : public FELinearMapping { * Note the reverse ordering of degrees of freedom on the left and upper * line and the numbering of the interior degrees of * freedom. + * + * @author Wolfgang Bangerth, 1998 */ template class FEQuarticSub : public FELinearMapping { diff --git a/deal.II/deal.II/include/grid/tria_accessor.h b/deal.II/deal.II/include/grid/tria_accessor.h index 9ae2a28617..d0ad841239 100644 --- a/deal.II/deal.II/include/grid/tria_accessor.h +++ b/deal.II/deal.II/include/grid/tria_accessor.h @@ -345,7 +345,13 @@ class LineAccessor : public TriaAccessor { /** * Access the value of the user pointer - * of this line. + * of this line. It is in the + * responsibility of the user to make + * sure that the pointer points to + * something useful. You should use the + * new style cast operator to maintain + * a minimum of typesafety, e.g. + * #A *a=static_cast(cell->user_pointer());#. */ void * user_pointer () const; @@ -605,7 +611,13 @@ class QuadAccessor : public TriaAccessor { /** * Access the value of the user pointer - * of this line. + * of this line. It is in the + * responsibility of the user to make + * sure that the pointer points to + * something useful. You should use the + * new style cast operator to maintain + * a minimum of typesafety, e.g. + * #A *a=static_cast(cell->user_pointer());#. */ void * user_pointer () const;