From 530102ce131a41990396922e5157f20a9d4b5e2b Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 27 Jul 1998 22:13:23 +0000 Subject: [PATCH] Doc update git-svn-id: https://svn.dealii.org/trunk@459 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_lib.lagrange.h | 6 ++++++ deal.II/deal.II/include/grid/tria_accessor.h | 16 ++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) 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; -- 2.39.5