// 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 _BOPTools_CommonBlock_HeaderFile #define _BOPTools_CommonBlock_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _BOPTools_PaveBlock_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif class BOPTools_PaveBlock; //! The class hold a structure for storing info about a couple
//! of pave blocks that are considered as common
class BOPTools_CommonBlock { 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 BOPTools_CommonBlock(); //! Constructor that uses couple of pave blocks
Standard_EXPORT BOPTools_CommonBlock(const BOPTools_PaveBlock& aPB1,const BOPTools_PaveBlock& aPB2); //! Constructor that uses a pave block and a face
Standard_EXPORT BOPTools_CommonBlock(const BOPTools_PaveBlock& aPB1,const Standard_Integer aF); //! Modifier
//! Sets first block
Standard_EXPORT void SetPaveBlock1(const BOPTools_PaveBlock& aPB1) ; //! Modifier
//! Sets second block
Standard_EXPORT void SetPaveBlock2(const BOPTools_PaveBlock& aPB2) ; //! Modifier
//! Sets DS-index of the face (if it exists) with which the
//! CommonBlock is common. 0 is default value
Standard_EXPORT void SetFace(const Standard_Integer aF) ; //! Selector
//! Always returns first block myPB1
Standard_EXPORT const BOPTools_PaveBlock& PaveBlock1() const; //! Selector
//! Returns block that belongs to the original edge with
//! DS-index=anIndex
Standard_EXPORT BOPTools_PaveBlock& PaveBlock1(const Standard_Integer anIndex) ; //! Selector
//! Always returns first block myPB2
Standard_EXPORT const BOPTools_PaveBlock& PaveBlock2() const; //! Selector
//! Returns block that does not belong to the original edge with
//! DS-index=anIndex
Standard_EXPORT BOPTools_PaveBlock& PaveBlock2(const Standard_Integer anIndex) ; //! Selector
//! Returns the DS-index of the face (if exists)
//! with which the CommonBlock is common.
//! Otherwise it returns 0.
Standard_EXPORT Standard_Integer Face() const; protected: private: BOPTools_PaveBlock myPB1; BOPTools_PaveBlock myPB2; Standard_Integer myFace; }; // other Inline functions and methods (like "C++: function call" methods) #endif