Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / NMTDS / NMTDS_Tools.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _NMTDS_Tools_HeaderFile
21 #define _NMTDS_Tools_HeaderFile
22
23 #ifndef _Standard_Integer_HeaderFile
24 #include <Standard_Integer.hxx>
25 #endif
26 #ifndef _TopAbs_ShapeEnum_HeaderFile
27 #include <TopAbs_ShapeEnum.hxx>
28 #endif
29 #ifndef _Standard_Boolean_HeaderFile
30 #include <Standard_Boolean.hxx>
31 #endif
32 class TopoDS_Vertex;
33 class TopoDS_Shape;
34 class TopTools_IndexedDataMapOfShapeShape;
35
36
37 #ifndef _Standard_HeaderFile
38 #include <Standard.hxx>
39 #endif
40 #ifndef _Standard_Macro_HeaderFile
41 #include <Standard_Macro.hxx>
42 #endif
43
44
45 class NMTDS_Tools  {
46
47 public:
48
49     void* operator new(size_t,void* anAddress) 
50       {
51         return anAddress;
52       }
53     void* operator new(size_t size) 
54       { 
55         return Standard::Allocate(size); 
56       }
57     void  operator delete(void *anAddress) 
58       { 
59         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
60       }
61  // Methods PUBLIC
62  // 
63
64
65 Standard_EXPORT static  Standard_Integer TypeToInteger(const TopAbs_ShapeEnum aT1,const TopAbs_ShapeEnum aT2) ;
66
67
68 Standard_EXPORT static  Standard_Boolean HasBRep(const TopAbs_ShapeEnum aT) ;
69
70
71 Standard_EXPORT static  Standard_Integer ComputeVV(const TopoDS_Vertex& aV1,const TopoDS_Vertex& aV2) ;
72
73
74 Standard_EXPORT static  void CopyShape(const TopoDS_Shape& aS,TopoDS_Shape& aSC) ;
75
76
77 Standard_EXPORT static  void CopyShape(const TopoDS_Shape& aS,TopoDS_Shape& aSC,TopTools_IndexedDataMapOfShapeShape& aMSS) ;
78
79
80
81
82
83 protected:
84
85  // Methods PROTECTED
86  // 
87
88
89  // Fields PROTECTED
90  //
91
92
93 private: 
94
95  // Methods PRIVATE
96  // 
97
98
99  // Fields PRIVATE
100  //
101
102
103 };
104
105
106
107
108
109 // other Inline functions and methods (like "C++: function call" methods)
110 //
111
112
113 #endif