0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / TNaming / TNaming_TranslateTool.hxx
CommitLineData
42cf5bc1 1// Created on: 1999-06-24
2// Created by: Sergey ZARITCHNY
3// Copyright (c) 1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17#ifndef _TNaming_TranslateTool_HeaderFile
18#define _TNaming_TranslateTool_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_Type.hxx>
22
23#include <MMgt_TShared.hxx>
24#include <TColStd_IndexedDataMapOfTransientTransient.hxx>
25class Standard_TypeMismatch;
26class TopoDS_Shape;
27
28
29class TNaming_TranslateTool;
30DEFINE_STANDARD_HANDLE(TNaming_TranslateTool, MMgt_TShared)
31
32//! tool to copy underlying TShape of a Shape.
33//! The TranslateTool class is provided to support the
34//! translation of topological data structures Transient
35//! to Transient.
36class TNaming_TranslateTool : public MMgt_TShared
37{
38
39public:
40
41
42 Standard_EXPORT void Add (TopoDS_Shape& S1, const TopoDS_Shape& S2) const;
43
44 Standard_EXPORT void MakeVertex (TopoDS_Shape& S) const;
45
46 Standard_EXPORT void MakeEdge (TopoDS_Shape& S) const;
47
48 Standard_EXPORT void MakeWire (TopoDS_Shape& S) const;
49
50 Standard_EXPORT void MakeFace (TopoDS_Shape& S) const;
51
52 Standard_EXPORT void MakeShell (TopoDS_Shape& S) const;
53
54 Standard_EXPORT void MakeSolid (TopoDS_Shape& S) const;
55
56 Standard_EXPORT void MakeCompSolid (TopoDS_Shape& S) const;
57
58 Standard_EXPORT void MakeCompound (TopoDS_Shape& S) const;
59
60 Standard_EXPORT void UpdateVertex (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const;
61
62 Standard_EXPORT void UpdateEdge (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const;
63
64 Standard_EXPORT void UpdateFace (const TopoDS_Shape& S1, TopoDS_Shape& S2, TColStd_IndexedDataMapOfTransientTransient& M) const;
65
66 Standard_EXPORT void UpdateShape (const TopoDS_Shape& S1, TopoDS_Shape& S2) const;
67
68
69
70
71 DEFINE_STANDARD_RTTI(TNaming_TranslateTool,MMgt_TShared)
72
73protected:
74
75
76
77
78private:
79
80
81
82
83};
84
85
86
87
88
89
90
91#endif // _TNaming_TranslateTool_HeaderFile