// 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_WireSplitter_HeaderFile #define _BOP_WireSplitter_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Face_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _BOPTColStd_ListOfListOfShape_HeaderFile #include #endif #ifndef _BOP_IndexedDataMapOfVertexListEdgeInfo_HeaderFile #include #endif #ifndef _TopTools_ListOfShape_HeaderFile #include #endif class TopoDS_Face; class TopTools_ListOfShape; class BOPTColStd_ListOfListOfShape; //! the algorithm to split multiconnexed
//! wires on a face onto biconnexed ones
//! .
class BOP_WireSplitter { 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;
BOP_WireSplitter(); //! Modifier
void SetFace(const TopoDS_Face& aF) ; //! Perform the algorithm using the list of shapes as data
Standard_EXPORT void DoWithListOfEdges(const TopTools_ListOfShape& aLE) ; //! Perform the algorithm using the face as data
Standard_EXPORT void DoWithFace() ; //! Returns TRUE if the source wire is biconnexed and
//! there is nothing to correct
Standard_Boolean IsNothingToDo() const; //! Returns TRUE if the algorithm was performed
//! successfuly
Standard_Boolean IsDone() const; //! Selector
const TopoDS_Face& Face() const; //! Selector
const BOPTColStd_ListOfListOfShape& Shapes() const; protected: private: //! Perform the algorithm
Standard_EXPORT void Do() ; TopoDS_Face myFace; Standard_Boolean myIsDone; Standard_Boolean myNothingToDo; BOPTColStd_ListOfListOfShape myShapes; BOP_IndexedDataMapOfVertexListEdgeInfo mySmartMap; TopTools_ListOfShape myEdges; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif