From 5db7d47491fa93a54f48a8b8e95d8d69a0428679 Mon Sep 17 00:00:00 2001 From: Wenqing Wang <wenqing.wang@ufz.de> Date: Mon, 2 Feb 2015 15:56:45 +0100 Subject: [PATCH] [MeL] Add MeshSubset::getMesh(). --- MeshLib/MeshSubset.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/MeshLib/MeshSubset.h b/MeshLib/MeshSubset.h index b00b928ef12..30e0a776cd5 100644 --- a/MeshLib/MeshSubset.h +++ b/MeshLib/MeshSubset.h @@ -150,6 +150,11 @@ public: return new MeshSubset(_msh, active_nodes, true); } + Mesh const& getMesh() const + { + return _msh; + } + private: Mesh const& _msh; std::vector<Node*> const* _nodes; -- GitLab