Salome HOME
Integration next version of GEOM packages from PKV.
[modules/geom.git] / src / NMTDS / NMTDS.cdl
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 -- File:        NMTDS.cdl
21 -- Created:     Fri Nov 28 10:13:19 2003
22 -- Author:      Peter KURNEV
23 --              <pkv@irinox>
24
25
26 package NMTDS 
27
28         ---Purpose: 
29
30 uses   
31     TCollection, 
32     TColStd,
33     Bnd,
34     TopoDS, 
35     TopAbs, 
36     TopTools, 
37     BooleanOperations, 
38     BOPTools,
39     BOPTColStd 
40     
41 is  
42     enumeration InterfType is
43         TI_VV,
44         TI_VE,
45         TI_VF,
46         TI_EE,
47         TI_EF,
48         TI_FF,
49         TI_UNKNOWN
50     end InterfType;      
51     --
52     class ShapesDataStructure;
53     class IndexRange;   
54     
55     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
56     -- Contribution of Samtech www.samcef.com BEGIN 
57     class Iterator; 
58     
59     class PassKey; 
60     class PassKeyBoolean; 
61     class PassKeyMapHasher; 
62     -- Contribution of Samtech www.samcef.com END  
63     class PassKeyShape; 
64     class PassKeyShapeMapHasher; 
65     --modified by NIZNHY-PKV Tue Feb  6 10:40:02 2007f 
66     class IteratorCheckerSI; 
67     class Tools; 
68     class InterfPool; 
69     --modified by NIZNHY-PKV Tue Feb  6 10:40:04 2007t 
70     pointer PShapesDataStructure to ShapesDataStructure from NMTDS;
71     pointer PIterator to Iterator from NMTDS;
72     pointer PInterfPool to InterfPool from NMTDS;
73      
74     class CArray1OfIndexRange instantiates 
75         CArray1 from BOPTColStd(IndexRange from NMTDS); 
76      
77     class ListOfIndexedDataMapOfShapeAncestorsSuccessors instantiates 
78         List from TCollection(IndexedDataMapOfShapeAncestorsSuccessors from BooleanOperations); 
79          
80     class IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger instantiates 
81         IndexedDataMap from TCollection(Integer        from Standard, 
82                                         IndexedDataMapOfShapeInteger from BooleanOperations, 
83                                         MapIntegerHasher from TColStd); 
84     
85     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
86     -- Contribution of Samtech www.samcef.com BEGIN 
87     class ListOfPassKey  instantiates 
88         List from TCollection(PassKey from NMTDS);  
89      
90     class MapOfPassKey instantiates
91         Map from TCollection(PassKey from NMTDS, 
92                              PassKeyMapHasher from NMTDS);  
93                              
94     class ListOfPassKeyBoolean  instantiates 
95         List from TCollection(PassKeyBoolean from NMTDS); 
96      
97     class MapOfPassKeyBoolean instantiates
98         Map from TCollection(PassKeyBoolean from NMTDS, 
99                              PassKeyMapHasher from NMTDS);   
100     -- Contribution of Samtech www.samcef.com END
101
102 --modified by NIZNHY-PKV Tue Oct 10 11:19:06 2006f 
103     class IndexedDataMapOfShapeBox  
104         instantiates IndexedDataMap from TCollection    (Shape from TopoDS,
105                                                          Box from Bnd,
106                                                          ShapeMapHasher from TopTools);
107     class IndexedDataMapOfIntegerShape  
108         instantiates IndexedDataMap from TCollection    (Integer from Standard,
109                                                          Shape from TopoDS,
110                                                          MapIntegerHasher from TColStd); 
111                                                           
112     class DataMapOfIntegerMapOfInteger  
113         instantiates DataMap from TCollection           (Integer from Standard, 
114                                                          MapOfInteger from TColStd, 
115                                                          MapIntegerHasher from TColStd); 
116
117 --modified by NIZNHY-PKV Tue Oct 10 11:19:08 2006t
118  
119 end NMTDS;