// 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 _TDataStd_ChildNodeIterator_HeaderFile #define _TDataStd_ChildNodeIterator_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Handle_TDataStd_TreeNode_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class TDataStd_TreeNode; //! Iterates on the ChildStepren step of a step, at the
//! first level only. It is possible to ask the
//! iterator to explore all the sub step levels of the
//! given one, with the option "allLevels".
class TDataStd_ChildNodeIterator { 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); } //! Creates an empty iterator.
Standard_EXPORT TDataStd_ChildNodeIterator(); //! Iterates on the ChildStepren of the given Step. If
//! option is set to true, it explores not
//! only the first, but all the sub Step levels.
Standard_EXPORT TDataStd_ChildNodeIterator(const Handle(TDataStd_TreeNode)& aTreeNode,const Standard_Boolean allLevels = Standard_False); //! Initializes the iteration on the Children Step of
//! the given Step. If option is set to
//! true, it explores not only the first, but all the
//! sub Step levels.
Standard_EXPORT void Initialize(const Handle(TDataStd_TreeNode)& aTreeNode,const Standard_Boolean allLevels = Standard_False) ; //! Returns True if there is a current Item in the
//! iteration.
Standard_Boolean More() const; //! Move to the next Item
Standard_EXPORT void Next() ; //! Move to the next Brother. If there is none, go up
//! etc. This method is interesting only with
//! "allLevels" behavior, because it avoids to explore
//! the current Step ChildStepren.
Standard_EXPORT void NextBrother() ; //! Returns the current item; a null Step if there is
//! no one.
Handle_TDataStd_TreeNode Value() const; protected: private: Handle_TDataStd_TreeNode myNode; Standard_Integer myFirstLevel; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif