From eb4c37602cbd876b70911d7102d331178dec090b Mon Sep 17 00:00:00 2001 From: Peter Bastian <peter@dune-project.org> Date: Wed, 27 Apr 2005 07:59:39 +0000 Subject: [PATCH] added dummy implementation of the three new size methods [[Imported from SVN: r1958]] --- grid/uggrid.hh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/grid/uggrid.hh b/grid/uggrid.hh index 6e7da0bf2..b440cddee 100644 --- a/grid/uggrid.hh +++ b/grid/uggrid.hh @@ -221,6 +221,28 @@ namespace Dune { */ int size (int level, int codim) const; + //! number of leaf entities per codim in this process + int size (int codim) const + { + DUNE_THROW(NotImplemented, "not implemented"); + return 0; + } + + //! number of entities per level, codim and geometry type in this process + int size (int level, int codim, GeometryType type) const + { + DUNE_THROW(NotImplemented, "not implemented"); + return 0; + } + + //! number of leaf entities per codim and geometry type in this process + int size (int codim, GeometryType type) const + { + DUNE_THROW(NotImplemented, "not implemented"); + return 0; + } + + #ifdef UGGRID_WITH_INDEX_SETS int global_size (int codim) const DUNE_DEPRECATED { return hierarchicIndexSet().size(maxlevel(),codim); } #else -- GitLab