From 9997bc340ddb97efe9a93f53fdb4aee7c1d3ac2f Mon Sep 17 00:00:00 2001
From: Martin Nolte <nolte@mathematik.uni-freiburg.de>
Date: Wed, 18 Dec 2013 15:58:07 +0100
Subject: [PATCH] add missing method isValid on entity seed

---
 dune/alugrid/2d/entityseed.hh | 4 +++-
 dune/alugrid/3d/entityseed.hh | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dune/alugrid/2d/entityseed.hh b/dune/alugrid/2d/entityseed.hh
index 19d4d359a..31e7f4ab0 100644
--- a/dune/alugrid/2d/entityseed.hh
+++ b/dune/alugrid/2d/entityseed.hh
@@ -69,7 +69,9 @@ public:
   /////////////////////////////////////////////////////////////
   //! copy constructor 
   ALU2dGridEntitySeedBase(const ALU2dGridEntitySeedType & org);
-  
+
+  bool isValid () const { return bool( item_ ); }
+
   //! equality operator 
   bool operator == (const ALU2dGridEntitySeedType& i) const
   {
diff --git a/dune/alugrid/3d/entityseed.hh b/dune/alugrid/3d/entityseed.hh
index 7292096c6..50de6706e 100644
--- a/dune/alugrid/3d/entityseed.hh
+++ b/dune/alugrid/3d/entityseed.hh
@@ -123,7 +123,9 @@ public:
   /////////////////////////////////////////////////////////////
   //! copy constructor 
   ALU3dGridEntitySeedBase(const ALU3dGridEntitySeedType & org);
-  
+
+  bool isValid () const { return bool( item_ ); }
+
   //! equality operator 
   bool operator == (const ALU3dGridEntitySeedType& i) const
   {
-- 
GitLab