*/
void reinit (const typename DoFHandler<dim>::cell_iterator &);
+ /**
+ * Return a reference to the copy
+ * of the quadrature formula
+ * stored by this object.
+ */
+ const Quadrature<dim> & get_quadrature () const;
+
/**
* Determine an estimate for the
* memory consumption (in bytes)
private:
/**
- * Store the quadrature formula here.
+ * Store a copy of the quadrature
+ * formula here.
*/
const Quadrature<dim> quadrature;
*/
typename DoFHandler<dim>::face_iterator get_face() const;
+ /**
+ * Return a reference to the copy
+ * of the quadrature formula
+ * stored by this object.
+ */
+ const Quadrature<dim-1> & get_quadrature () const;
+
protected:
/**
- * Store the quadrature formula here.
+ * Store a copy of the quadrature
+ * formula here.
*/
const Quadrature<dim-1> quadrature;
}
+/*------------------------ Inline functions: FEFaceValuesBase --------------------*/
+
+
+template <int dim>
+const Quadrature<dim> &
+FEValues<dim>::get_quadrature () const
+{
+ return quadrature;
+};
+
+
+
/*------------------------ Inline functions: FEFaceValuesBase --------------------*/
};
+
+
+template <int dim>
+const Quadrature<dim-1> &
+FEFaceValuesBase<dim>::get_quadrature () const
+{
+ return quadrature;
+};
+
+
+
#endif