// 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 _BOP_BlockIterator_HeaderFile #define _BOP_BlockIterator_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif class Standard_NoMoreObject; class BOP_BlockIterator { 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); } //! Empty Constructor
Standard_EXPORT BOP_BlockIterator(); //! Creates an object with initial range
//! of [Lower,Upper]
Standard_EXPORT BOP_BlockIterator(const Standard_Integer Lower,const Standard_Integer Upper); //! Initialize an object with initial range
//! of [Lower,Upper]
Standard_EXPORT void Initialize() ; //! Support of Iteration
Standard_EXPORT Standard_Boolean More() const; //! Support of Iteration
Standard_EXPORT void Next() ; //! Support of Iteration
Standard_EXPORT Standard_Integer Value() const; //! Returns the extension=myUpper - myLower + 1;
Standard_EXPORT Standard_Integer Extent() const; protected: private: Standard_Integer myLower; Standard_Integer myUpper; Standard_Integer myValue; }; // other Inline functions and methods (like "C++: function call" methods) #endif