]> SALOME platform Git repositories - modules/geom.git/blob - src/NMTDS/NMTDS.cdl
Salome HOME
Fix issue 0020479: EDF 1116 GEOM: Create a group, "Add" button is inactive but "Selec...
[modules/geom.git] / src / NMTDS / NMTDS.cdl
1 --  Copyright (C) 2007-2008  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 -- File:        NMTDS.cdl
23 -- Created:     Fri Nov 28 10:13:19 2003
24 -- Author:      Peter KURNEV
25 --              <pkv@irinox>
26 --
27 package NMTDS 
28
29         ---Purpose: 
30
31 uses   
32     TCollection, 
33     TColStd,
34     Bnd,
35     TopoDS, 
36     TopAbs, 
37     TopTools, 
38     BooleanOperations, 
39     BOPTools,
40     BOPTColStd 
41     
42 is  
43     enumeration InterfType is
44         TI_VV,
45         TI_VE,
46         TI_VF,
47         TI_EE,
48         TI_EF,
49         TI_FF,
50         TI_UNKNOWN
51     end InterfType;      
52     --
53     class ShapesDataStructure;
54     class IndexRange;   
55     
56     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
57     -- Contribution of Samtech www.samcef.com BEGIN 
58     class Iterator; 
59     
60     class PassKey; 
61     class PassKeyBoolean; 
62     class PassKeyMapHasher; 
63     -- Contribution of Samtech www.samcef.com END  
64     class PassKeyShape; 
65     class PassKeyShapeMapHasher; 
66     --modified by NIZNHY-PKV Tue Feb  6 10:40:02 2007f 
67     class IteratorCheckerSI; 
68     class Tools; 
69     class InterfPool; 
70     --modified by NIZNHY-PKV Tue Feb  6 10:40:04 2007t 
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     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
87     -- Contribution of Samtech www.samcef.com BEGIN 
88     class ListOfPassKey  instantiates 
89         List from TCollection(PassKey from NMTDS);  
90      
91     class MapOfPassKey instantiates
92         Map from TCollection(PassKey from NMTDS, 
93                              PassKeyMapHasher from NMTDS);  
94                              
95     class ListOfPassKeyBoolean  instantiates 
96         List from TCollection(PassKeyBoolean from NMTDS); 
97      
98     class MapOfPassKeyBoolean instantiates
99         Map from TCollection(PassKeyBoolean from NMTDS, 
100                              PassKeyMapHasher from NMTDS);   
101     -- Contribution of Samtech www.samcef.com END
102
103 --modified by NIZNHY-PKV Tue Oct 10 11:19:06 2006f 
104     class IndexedDataMapOfShapeBox  
105         instantiates IndexedDataMap from TCollection    (Shape from TopoDS,
106                                                          Box from Bnd,
107                                                          ShapeMapHasher from TopTools);
108     class IndexedDataMapOfIntegerShape  
109         instantiates IndexedDataMap from TCollection    (Integer from Standard,
110                                                          Shape from TopoDS,
111                                                          MapIntegerHasher from TColStd); 
112                                                           
113     class DataMapOfIntegerMapOfInteger  
114         instantiates DataMap from TCollection           (Integer from Standard, 
115                                                          MapOfInteger from TColStd, 
116                                                          MapIntegerHasher from TColStd); 
117
118 --modified by NIZNHY-PKV Tue Oct 10 11:19:08 2006t
119  
120 end NMTDS;