// Created on: 1999-06-24 // Created by: Sergey ZARITCHNY // Copyright (c) 1999 Matra Datavision // Copyright (c) 1999-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 _TNaming_TranslateTool_HeaderFile #define _TNaming_TranslateTool_HeaderFile #include #include #include #include class Standard_TypeMismatch; class TopoDS_Shape; class TNaming_TranslateTool; DEFINE_STANDARD_HANDLE(TNaming_TranslateTool, MMgt_TShared) //! tool to copy underlying TShape of a Shape. //! The TranslateTool class is provided to support the //! translation of topological data structures Transient //! to Transient. class TNaming_TranslateTool : public MMgt_TShared { public: Standard_EXPORT void Add (TopoDS_Shape& S1, const TopoDS_Shape& S2) const; Standard_EXPORT void MakeVertex (TopoDS_Shape& S) const; Standard_EXPORT void MakeEdge (TopoDS_Shape& S) const; Standard_EXPORT void MakeWire (TopoDS_Shape& S) const; Standard_EXPORT void MakeFace (TopoDS_Shape& S) const; Standard_EXPORT void MakeShell (TopoDS_Shape& S) const; Standard_EXPORT void MakeSolid (TopoDS_Shape& S) const; Standard_EXPORT void MakeCompSolid (TopoDS_Shape& S) const; Standard_EXPORT void MakeCompound (TopoDS_Shape& S) const; Standard_EXPORT void UpdateVertex (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const; Standard_EXPORT void UpdateEdge (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const; Standard_EXPORT void UpdateFace (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const; Standard_EXPORT void UpdateShape (const TopoDS_Shape& S1, TopoDS_Shape& S2) const; DEFINE_STANDARD_RTTIEXT(TNaming_TranslateTool,MMgt_TShared) protected: private: }; #endif // _TNaming_TranslateTool_HeaderFile