From: Wolfgang Bangerth Date: Wed, 7 Mar 2001 17:27:23 +0000 (+0000) Subject: Make update_once and update_each protected. X-Git-Tag: v8.0.0~19615 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00caa167b56882febb800c84145bbd2acae71a2f;p=dealii.git Make update_once and update_each protected. git-svn-id: https://svn.dealii.org/trunk@4156 0785d39b-7218-0410-832d-ea1e28bc413d --- 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.