Salome HOME
Fix bug in structural elements (PAL #2012)
[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     --modified by NIZNHY-PKV Thu Jan 21 09:46:48 2010f 
68     class BndSphere;
69     --modified by NIZNHY-PKV Thu Jan 21 09:46:53 2010t 
70     --     
71     pointer PShapesDataStructure to ShapesDataStructure from NMTDS;
72     pointer PIterator to Iterator from NMTDS;
73     pointer PInterfPool to InterfPool from NMTDS;
74      
75     class CArray1OfIndexRange instantiates 
76         CArray1 from BOPTColStd(IndexRange from NMTDS); 
77      
78     class ListOfIndexedDataMapOfShapeAncestorsSuccessors instantiates 
79         List from TCollection(IndexedDataMapOfShapeAncestorsSuccessors from BooleanOperations); 
80          
81     class IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger instantiates 
82         IndexedDataMap from TCollection(Integer        from Standard, 
83                                         IndexedDataMapOfShapeInteger from BooleanOperations, 
84                                         MapIntegerHasher from TColStd); 
85     
86     class ListOfPassKey  instantiates 
87         List from TCollection(PassKey from NMTDS);  
88      
89     class MapOfPassKey instantiates
90         Map from TCollection(PassKey from NMTDS, 
91                              PassKeyMapHasher from NMTDS);  
92                              
93     class ListOfPassKeyBoolean  instantiates 
94         List from TCollection(PassKeyBoolean from NMTDS); 
95      
96     class MapOfPassKeyBoolean instantiates
97         Map from TCollection(PassKeyBoolean from NMTDS, 
98                              PassKeyMapHasher from NMTDS);   
99
100     class IndexedDataMapOfShapeBox  
101         instantiates IndexedDataMap from TCollection    (Shape from TopoDS,
102                                                          Box from Bnd,
103                                                          ShapeMapHasher from TopTools);
104     class IndexedDataMapOfIntegerShape  
105         instantiates IndexedDataMap from TCollection    (Integer from Standard,
106                                                          Shape from TopoDS,
107                                                          MapIntegerHasher from TColStd); 
108                                                           
109     class DataMapOfIntegerMapOfInteger  
110         instantiates DataMap from TCollection           (Integer from Standard, 
111                                                          MapOfInteger from TColStd, 
112                                                          MapIntegerHasher from TColStd); 
113     
114     --modified by NIZNHY-PKV Thu Jan 21 09:47:13 2010f 
115     class IndexedDataMapOfShapeBndSphere  
116         instantiates IndexedDataMap from TCollection(Shape from TopoDS,
117                                                      BndSphere from NMTDS,
118                                                      ShapeMapHasher from TopTools);
119     --modified by NIZNHY-PKV Thu Jan 21 09:47:26 2010 
120     
121 end NMTDS;