From a345becea2fcdc4443a3a52e117422c960fc6571 Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 25 Dec 2018 20:25:55 +0300 Subject: [PATCH] 0030424: C# wrapper - implement IEnumerable interface by NCollection classes TopExp_Explorer::Value() - added Current() alias for providing interface consistent to other OCCT Iterators. --- src/TopExp/TopExp_Explorer.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/TopExp/TopExp_Explorer.hxx b/src/TopExp/TopExp_Explorer.hxx index f99ae14276..dd69a2a42d 100644 --- a/src/TopExp/TopExp_Explorer.hxx +++ b/src/TopExp/TopExp_Explorer.hxx @@ -125,7 +125,12 @@ public: //! Exceptions //! Standard_NoMoreObject if there are no more shapes to explore. Standard_EXPORT void Next(); - + + //! Returns the current shape in the exploration. + //! Exceptions + //! Standard_NoSuchObject if this explorer has no more shapes to explore. + const TopoDS_Shape& Value() const { return Current(); } + //! Returns the current shape in the exploration. //! Exceptions //! Standard_NoSuchObject if this explorer has no more shapes to explore.