From e8e903be629fef582b2bc99138d9b65dd8c3b1d3 Mon Sep 17 00:00:00 2001
From: Jonathan Youett <youett@mi.fu-berlin.de>
Date: Fri, 14 Oct 2011 13:23:54 +0000
Subject: [PATCH] make methods accessable and const

[[Imported from SVN: r7919]]
---
 dune/gfe/globalgeodesicfefunction.hh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dune/gfe/globalgeodesicfefunction.hh b/dune/gfe/globalgeodesicfefunction.hh
index 618b1a8e..e58f21bb 100644
--- a/dune/gfe/globalgeodesicfefunction.hh
+++ b/dune/gfe/globalgeodesicfefunction.hh
@@ -31,6 +31,8 @@ GlobalGeodesicFEFunction {
     //! Dimension of the embedded tanget space
     enum { embeddedDim = EmbeddedTangentVector::dimension };
 
+public:
+
     //! Create global function by a global basis and the corresponding coefficient vector
     GlobalGeodesicFEFunction(const Basis& basis, const std::vector<TargetSpace>& coefficients) :
         basis_(basis),
@@ -38,7 +40,7 @@ GlobalGeodesicFEFunction {
     {}
 
     /** \brief Evaluate the function at local coordinates. */
-    void evaluateLocal(const Element& element, const Dune::FieldVector<ctype,gridDim>& local, TargetSpace& out) 
+    void evaluateLocal(const Element& element, const Dune::FieldVector<ctype,gridDim>& local, TargetSpace& out) const 
     {
         int numOfBasisFct = basis_.getLocalFiniteElement(element).size(); 
 
@@ -55,7 +57,7 @@ GlobalGeodesicFEFunction {
 
     /** \brief Evaluate the derivative of the function at local coordinates. */
     void evaluateDerivativeLocal(const Element& element, const Dune::FieldVector<ctype,gridDim>& local, 
-                                 Dune::FieldMatrix<ctype, embeddedDim, gridDim>& out)
+                                 Dune::FieldMatrix<ctype, embeddedDim, gridDim>& out) const
     {
         int numOfBasisFct = basis_.getLocalFiniteElement(element).size(); 
 
-- 
GitLab