Salome HOME
Second version of PartAlgo.
[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     
32     TCollection, 
33     TColStd,
34     Bnd,
35     TopoDS, 
36     TopAbs, 
37     TopTools, 
38     BooleanOperations,
39     BOPTColStd
40 is  
41     class ShapesDataStructure;
42     class IndexRange;   
43     
44     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
45     -- Contribution of Samtech www.samcef.com BEGIN 
46     class Iterator; 
47     class PassKey; 
48     class PassKeyBoolean; 
49     class PassKeyMapHasher; 
50     -- Contribution of Samtech www.samcef.com END  
51     
52     pointer PShapesDataStructure to ShapesDataStructure from NMTDS;
53
54     class CArray1OfIndexRange instantiates 
55         CArray1 from BOPTColStd(IndexRange from NMTDS); 
56      
57     class ListOfIndexedDataMapOfShapeAncestorsSuccessors instantiates 
58         List from TCollection(IndexedDataMapOfShapeAncestorsSuccessors from BooleanOperations); 
59          
60     class IndexedDataMapOfIntegerIndexedDataMapOfShapeInteger instantiates 
61         IndexedDataMap from TCollection(Integer        from Standard, 
62                                         IndexedDataMapOfShapeInteger from BooleanOperations, 
63                                         MapIntegerHasher from TColStd); 
64     
65     -- Modified to Add new classes Thu Sep 14 14:35:18 2006 
66     -- Contribution of Samtech www.samcef.com BEGIN 
67     class ListOfPassKey  instantiates 
68         List from TCollection(PassKey from NMTDS);  
69      
70     class MapOfPassKey instantiates
71         Map from TCollection(PassKey from NMTDS, 
72                              PassKeyMapHasher from NMTDS);  
73                              
74     class ListOfPassKeyBoolean  instantiates 
75         List from TCollection(PassKeyBoolean from NMTDS); 
76      
77     class MapOfPassKeyBoolean instantiates
78         Map from TCollection(PassKeyBoolean from NMTDS, 
79                              PassKeyMapHasher from NMTDS);   
80     -- Contribution of Samtech www.samcef.com END
81
82
83     class IndexedDataMapOfShapeBox  
84         instantiates IndexedDataMap from TCollection    (Shape from TopoDS,
85                                                          Box from Bnd,
86                                                          ShapeMapHasher from TopTools);
87     class IndexedDataMapOfIntegerShape  
88         instantiates IndexedDataMap from TCollection    (Integer from Standard,
89                                                          Shape from TopoDS,
90                                                          MapIntegerHasher from TColStd); 
91
92  
93 end NMTDS;