mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0030424: C# wrapper - implement IEnumerable interface by NCollection classes
TopExp_Explorer::Value() - added Current() alias for providing interface consistent to other OCCT Iterators.
This commit is contained in:
parent
80eeb3cef1
commit
a345becea2
@ -125,7 +125,12 @@ public:
|
|||||||
//! Exceptions
|
//! Exceptions
|
||||||
//! Standard_NoMoreObject if there are no more shapes to explore.
|
//! Standard_NoMoreObject if there are no more shapes to explore.
|
||||||
Standard_EXPORT void Next();
|
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.
|
//! Returns the current shape in the exploration.
|
||||||
//! Exceptions
|
//! Exceptions
|
||||||
//! Standard_NoSuchObject if this explorer has no more shapes to explore.
|
//! Standard_NoSuchObject if this explorer has no more shapes to explore.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user