]> SALOME platform Git repositories - modules/geom.git/blob - src/NMTDS/NMTDS_ShapesDataStructure.hxx
Salome HOME
b3e8065f806efda98797b152fa085bf75db8bbde
[modules/geom.git] / src / NMTDS / NMTDS_ShapesDataStructure.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_ShapesDataStructure_HeaderFile
21 #define _NMTDS_ShapesDataStructure_HeaderFile
22
23 #ifndef _TopoDS_Shape_HeaderFile
24 #include <TopoDS_Shape.hxx>
25 #endif
26 #ifndef _NMTDS_CArray1OfIndexRange_HeaderFile
27 #include <NMTDS_CArray1OfIndexRange.hxx>
28 #endif
29 #ifndef _NMTDS_IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger_HeaderFile
30 #include <NMTDS_IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger.hxx>
31 #endif
32 #ifndef _BooleanOperations_ShapesDataStructure_HeaderFile
33 #include <BooleanOperations_ShapesDataStructure.hxx>
34 #endif
35 #ifndef _Standard_Integer_HeaderFile
36 #include <Standard_Integer.hxx>
37 #endif
38 class TopoDS_Shape;
39 class NMTDS_CArray1OfIndexRange;
40 class BooleanOperations_IndexedDataMapOfShapeAncestorsSuccessors;
41
42
43 #ifndef _Standard_HeaderFile
44 #include <Standard.hxx>
45 #endif
46 #ifndef _Standard_Macro_HeaderFile
47 #include <Standard_Macro.hxx>
48 #endif
49
50
51 class NMTDS_ShapesDataStructure  : public BooleanOperations_ShapesDataStructure {
52
53 public:
54
55     void* operator new(size_t,void* anAddress) 
56       {
57         return anAddress;
58       }
59     void* operator new(size_t size) 
60       { 
61         return Standard::Allocate(size); 
62       }
63     void  operator delete(void *anAddress) 
64       { 
65         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
66       }
67  // Methods PUBLIC
68  // 
69
70
71 Standard_EXPORT NMTDS_ShapesDataStructure();
72
73
74 Standard_EXPORT   void SetCompositeShape(const TopoDS_Shape& aS) ;
75
76
77 Standard_EXPORT   void Init() ;
78
79
80 Standard_EXPORT  const NMTDS_CArray1OfIndexRange& Ranges() const;
81
82
83 Standard_EXPORT  const TopoDS_Shape& CompositeShape() const;
84
85
86 Standard_EXPORT   Standard_Integer ShapeRangeIndex(const Standard_Integer aId) const;
87
88
89 Standard_EXPORT virtual  Standard_Integer Rank(const Standard_Integer anIndex) const;
90
91
92 Standard_EXPORT virtual  Standard_Integer ShapeIndex(const TopoDS_Shape& aS,const Standard_Integer iRank) const;
93
94
95 Standard_EXPORT   void FillMap(const TopoDS_Shape& aS,BooleanOperations_IndexedDataMapOfShapeAncestorsSuccessors& aMSA,BooleanOperations_IndexedDataMapOfShapeAncestorsSuccessors& aMS) const;
96
97
98 Standard_EXPORT   void FillSubshapes(const TopoDS_Shape& aS,BooleanOperations_IndexedDataMapOfShapeAncestorsSuccessors& aMSA,BooleanOperations_IndexedDataMapOfShapeAncestorsSuccessors& aMS) const;
99
100
101
102
103
104 protected:
105
106  // Methods PROTECTED
107  // 
108
109
110  // Fields PROTECTED
111  //
112 TopoDS_Shape myCompositeShape;
113 NMTDS_CArray1OfIndexRange myRanges;
114 NMTDS_IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger myShapeIndexMap;
115
116
117 private: 
118
119  // Methods PRIVATE
120  // 
121
122
123  // Fields PRIVATE
124  //
125
126
127 };
128
129
130
131
132
133 // other Inline functions and methods (like "C++: function call" methods)
134 //
135
136
137 #endif