// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _BRepSweep_Iterator_HeaderFile #define _BRepSweep_Iterator_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Iterator_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _TopAbs_Orientation_HeaderFile #include #endif class Standard_NoMoreObject; class Standard_NoSuchObject; class TopoDS_Shape; //! This class provides iteration services required by
//! the Generating Line (TopoDS Shape) of a BRepSweep.
//! This tool is used to iterate on the direct
//! sub-shapes of a Shape.
//!
class BRepSweep_Iterator { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } Standard_EXPORT BRepSweep_Iterator(); //! Resest the Iterator on sub-shapes of .
Standard_EXPORT void Init(const TopoDS_Shape& aShape) ; //! Returns True if there is a current sub-shape.
//!
Standard_Boolean More() const; //! Moves to the next sub-shape.
Standard_EXPORT void Next() ; //! Returns the current sub-shape.
const TopoDS_Shape& Value() const; //! Returns the orientation of the current sub-shape.
TopAbs_Orientation Orientation() const; protected: private: TopoDS_Iterator myIterator; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif