From 029100b3dc73d1a2f8e03d48871920e0c5bd3d53 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Wed, 28 Jan 2015 19:16:59 +0000
Subject: [PATCH] Inherit from VirtualGridViewFunction

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

diff --git a/dune/gfe/globalgeodesicfefunction.hh b/dune/gfe/globalgeodesicfefunction.hh
index 435bb60a..0c78a044 100644
--- a/dune/gfe/globalgeodesicfefunction.hh
+++ b/dune/gfe/globalgeodesicfefunction.hh
@@ -15,6 +15,7 @@
  */
 template<class B, class TargetSpace>
 class GlobalGeodesicFEFunction
+: public VirtualGridViewFunction<typename B::GridView, TargetSpace>
 {
 
 public:
@@ -37,6 +38,7 @@ public:
 
     //! Create global function by a global basis and the corresponding coefficient vector
     GlobalGeodesicFEFunction(const Basis& basis, const std::vector<TargetSpace>& coefficients) :
+        VirtualGridViewFunction<typename B::GridView, TargetSpace>(basis.getGridView()),
         basis_(basis),
         coefficients_(coefficients)
     {}
-- 
GitLab