Salome HOME
Mantis issue 0021404: Problem with partition. A fix by Peter Kurnev.
[modules/geom.git] / src / NMTDS / NMTDS.cdl
1 -- Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 --
3 -- Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 -- CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 --
6 -- This library is free software; you can redistribute it and/or
7 -- modify it under the terms of the GNU Lesser General Public
8 -- License as published by the Free Software Foundation; either
9 -- version 2.1 of the License.
10 --
11 -- This library is distributed in the hope that it will be useful,
12 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
13 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 -- Lesser General Public License for more details.
15 --
16 -- You should have received a copy of the GNU Lesser General Public
17 -- License along with this library; if not, write to the Free Software
18 -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 --
20 -- See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 --
22
23 --  File:       NMTDS.cdl
24 --  Created:    Fri Nov 28 10:13:19 2003
25 --  Author:     Peter KURNEV
26 --
27 package NMTDS 
28
29         ---Purpose: 
30
31 uses   
32     TCollection, 
33     TColStd,
34     gp,
35     Bnd,
36     TopoDS, 
37     TopAbs, 
38     TopTools, 
39     BooleanOperations, 
40     BOPTools,
41     BOPTColStd 
42     
43 is  
44     enumeration InterfType is
45         TI_VV,
46         TI_VE,
47         TI_VF,
48         TI_EE,
49         TI_EF,
50         TI_FF,
51         TI_UNKNOWN
52     end InterfType;      
53     --
54     class ShapesDataStructure;
55     class IndexRange;   
56     
57     class Iterator; 
58     
59     class PassKey; 
60     class PassKeyBoolean; 
61     class PassKeyMapHasher; 
62     class PassKeyShape; 
63     class PassKeyShapeMapHasher; 
64     class IteratorCheckerSI; 
65     class Tools; 
66     class InterfPool; 
67     class BndSphere; 
68     --modified by NIZNHY-PKV Mon Dec 12 08:39:27 2011f 
69     class Pair; 
70     class PairBoolean;  
71     class PairMapHasher;
72     --modified by NIZNHY-PKV Mon Dec 12 08:39:30 2011t
73     --     
74     pointer PShapesDataStructure to ShapesDataStructure from NMTDS;
75     pointer PIterator to Iterator from NMTDS;
76     pointer PInterfPool to InterfPool from NMTDS;
77      
78     class CArray1OfIndexRange instantiates 
79         CArray1 from BOPTColStd(IndexRange from NMTDS); 
80      
81     class ListOfIndexedDataMapOfShapeAncestorsSuccessors instantiates 
82         List from TCollection(IndexedDataMapOfShapeAncestorsSuccessors from BooleanOperations); 
83          
84     class ListOfPassKey  instantiates 
85         List from TCollection(PassKey from NMTDS);  
86      
87     class MapOfPassKey instantiates
88         Map from TCollection(PassKey from NMTDS, 
89                              PassKeyMapHasher from NMTDS);  
90                              
91     class ListOfPassKeyBoolean  instantiates 
92         List from TCollection(PassKeyBoolean from NMTDS); 
93      
94     class MapOfPassKeyBoolean instantiates
95         Map from TCollection(PassKeyBoolean from NMTDS, 
96                              PassKeyMapHasher from NMTDS);   
97
98     class IndexedDataMapOfShapeBox  
99         instantiates IndexedDataMap from TCollection    (Shape from TopoDS,
100                                                          Box from Bnd,
101                                                          ShapeMapHasher from TopTools);
102     class IndexedDataMapOfIntegerShape  
103         instantiates IndexedDataMap from TCollection    (Integer from Standard,
104                                                          Shape from TopoDS,
105                                                          MapIntegerHasher from TColStd); 
106                                                           
107     class DataMapOfIntegerMapOfInteger  
108         instantiates DataMap from TCollection           (Integer from Standard, 
109                                                          MapOfInteger from TColStd, 
110                                                          MapIntegerHasher from TColStd); 
111     
112    
113     class IndexedDataMapOfShapeBndSphere  
114         instantiates IndexedDataMap from TCollection(Shape from TopoDS,
115                                                      BndSphere from NMTDS,
116                                                      ShapeMapHasher from TopTools);
117  
118      
119     --modified by NIZNHY-PKV Mon Dec 12 08:41:50 2011f
120     class ListOfPair  instantiates 
121         List from TCollection(Pair from NMTDS);   
122          
123     class ListOfPairBoolean  instantiates 
124         List from TCollection(PairBoolean from NMTDS);  
125      
126     class MapOfPairBoolean instantiates
127         Map from TCollection(PairBoolean from NMTDS, 
128                              PairMapHasher from NMTDS); 
129 --    class IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger instantiates 
130 --      IndexedDataMap from TCollection(Integer        from Standard, 
131 --                                      IndexedDataMapOfShapeInteger from BooleanOperations, 
132 --                                      MapIntegerHasher from TColStd);  
133     --modified by NIZNHY-PKV Mon Dec 12 08:41:54 2011t
134   
135
136 end NMTDS;