// 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_EdgeInfo_HeaderFile #define _BOP_EdgeInfo_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TopoDS_Edge_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class TopoDS_Edge; //! The auxiliary class to store data about edges
//! that have common vertex
//!
class BOP_EdgeInfo { 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_EdgeInfo(); //! Modifier
Standard_EXPORT void SetEdge(const TopoDS_Edge& aE) ; //! Modifier
Standard_EXPORT void SetPassed(const Standard_Boolean aFlag) ; //! Modifier
Standard_EXPORT void SetAngle(const Standard_Real anAngle) ; //! Modifier
Standard_EXPORT void SetInFlag(const Standard_Boolean aFlag) ; //! Selector
Standard_EXPORT const TopoDS_Edge& Edge() const; //! Selector
Standard_EXPORT Standard_Boolean Passed() const; //! Selector
Standard_EXPORT Standard_Real Angle() const; //! Selector
Standard_EXPORT Standard_Boolean IsIn() const; protected: private: TopoDS_Edge myEdge; Standard_Boolean myPassed; Standard_Boolean myInFlag; Standard_Real myAngle; }; // other Inline functions and methods (like "C++: function call" methods) #endif