From d15ec3ed3ecdfe9dbb1528f371df50eb10bbdba0 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 7 Mar 2001 17:27:23 +0000 Subject: [PATCH] Make update_once and update_each protected. git-svn-id: https://svn.dealii.org/trunk@4156 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/fe/fe_system.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/deal.II/deal.II/include/fe/fe_system.h b/deal.II/deal.II/include/fe/fe_system.h index 54bae219a1..ca4a9249f1 100644 --- a/deal.II/deal.II/include/fe/fe_system.h +++ b/deal.II/deal.II/include/fe/fe_system.h @@ -172,18 +172,6 @@ class FESystem : public FiniteElement */ virtual unsigned int memory_consumption () const; - /** - * Compute flags for initial - * update only. - */ - virtual UpdateFlags update_once (UpdateFlags flags) const; - - /** - * Compute flags for update on - * each cell. - */ - virtual UpdateFlags update_each (UpdateFlags flags) const; - /** * Return the support points of * the trial functions on the @@ -223,6 +211,18 @@ class FESystem : public FiniteElement virtual void get_unit_face_support_points (typename std::vector > &) const; protected: + /** + * Compute flags for initial + * update only. + */ + virtual UpdateFlags update_once (UpdateFlags flags) const; + + /** + * Compute flags for update on + * each cell. + */ + virtual UpdateFlags update_each (UpdateFlags flags) const; + /** * @p{clone} function instead of * a copy constructor. -- 2.39.5