// Created on: 2000-01-19 // Created by: data exchange team // Copyright (c) 2000-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _XSAlgo_AlgoContainer_HeaderFile #define _XSAlgo_AlgoContainer_HeaderFile #include #include #include #include #include #include #include #include #include class XSAlgo_ToolContainer; class TopoDS_Shape; class Standard_Transient; class Message_ProgressIndicator; class TopoDS_Edge; class TopoDS_Face; class Transfer_TransientProcess; class Transfer_FinderProcess; class XSAlgo_AlgoContainer; DEFINE_STANDARD_HANDLE(XSAlgo_AlgoContainer, Standard_Transient) class XSAlgo_AlgoContainer : public Standard_Transient { public: //! Empty constructor Standard_EXPORT XSAlgo_AlgoContainer(); //! Sets ToolContainer void SetToolContainer (const Handle(XSAlgo_ToolContainer)& TC); //! Returns ToolContainer Handle(XSAlgo_ToolContainer) ToolContainer() const; //! Performs actions necessary for preparing environment //! for transfer. Empty in Open version. Standard_EXPORT virtual void PrepareForTransfer() const; //! Does shape processing with specified tolerances //! and returns resulting shape and associated information //! in the form of Transient. //! This information should be later transmitted to //! MergeTransferInfo in order to be recorded in the //! translation map Standard_EXPORT virtual TopoDS_Shape ProcessShape ( const TopoDS_Shape& shape, const Standard_Real Prec, const Standard_Real MaxTol, const Standard_CString rscfile, const Standard_CString seq, Handle(Standard_Transient)& info, const Handle(Message_ProgressIndicator)& progress = 0, const Standard_Boolean NonManifold = Standard_False) const; //! Checks quality of pcurve of the edge on the given face, //! and corrects it if necessary. Standard_EXPORT virtual Standard_Boolean CheckPCurve (const TopoDS_Edge& edge, const TopoDS_Face& face, const Standard_Real preci, const Standard_Boolean isSeam) const; Standard_EXPORT virtual void MergeTransferInfo (const Handle(Transfer_TransientProcess)& TP, const Handle(Standard_Transient)& info, const Standard_Integer startTPitem = 1) const; //! Updates translation map (TP or FP) with information //! resulting from ShapeProcessing //! Parameter startTPitem can be used for optimisation, to //! restrict modifications to entities stored in TP starting //! from item startTPitem Standard_EXPORT virtual void MergeTransferInfo (const Handle(Transfer_FinderProcess)& FP, const Handle(Standard_Transient)& info) const; //! Sets the model for translations Standard_EXPORT void SetModel(Handle(Interface_InterfaceModel)& theModel); DEFINE_STANDARD_RTTIEXT(XSAlgo_AlgoContainer,Standard_Transient) protected: //! Returns a parameter for translations. //! First tries get it from non-static model, //! if failure get it from static map Standard_EXPORT Handle(Interface_Static) getParam(const Standard_CString theParamName) const; Standard_EXPORT Standard_Integer IVal(const Standard_CString theParamName) const; Standard_EXPORT Standard_Real RVal(const Standard_CString theParamName) const; Standard_EXPORT Standard_CString CVal(const Standard_CString theParamName) const; void initParameters(); private: Handle(XSAlgo_ToolContainer) myTC; Handle(Interface_InterfaceModel) myModel; }; #include #endif // _XSAlgo_AlgoContainer_HeaderFile