ac1d7cb89e65877fce149a1739675dc3fccd88ba
[occt.git] / src / QANCollection / QANCollection.cdl
1 -- Created on: 2004-03-05
2 -- Created by: Mikhail KUZMITCHEV
3 -- Copyright (c) 2004-2014 OPEN CASCADE SAS
4 --
5 -- This file is part of Open CASCADE Technology software library.
6 --
7 -- This library is free software; you can redistribute it and/or modify it under
8 -- the terms of the GNU Lesser General Public License version 2.1 as published
9 -- by the Free Software Foundation, with special exception defined in the file
10 -- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 -- distribution for complete text of the license and disclaimer of any warranty.
12 --
13 -- Alternatively, this file may be used under the terms of Open CASCADE
14 -- commercial license or contractual agreement.
15
16 package QANCollection
17
18 uses
19     Draw,
20     TCollection, 
21     TColStd,
22     gp
23
24 is
25     class  ListOfPnt   instantiates  List  from  TCollection    (Pnt  from  gp);
26     class  StackOfPnt  instantiates  Stack from  TCollection    (Pnt  from  gp);
27     class  SListOfPnt  instantiates  SList from  TCollection    (Pnt  from  gp);
28     class  DataMapOfRealPnt instantiates DataMap from TCollection  
29                                         (Real from Standard, 
30                                          Pnt from gp, 
31                                          MapRealHasher from TColStd);
32     class  IndexedDataMapOfRealPnt instantiates IndexedDataMap from TCollection
33                                         (Real from Standard, 
34                                          Pnt from gp, 
35                                          MapRealHasher from TColStd);
36     class  DoubleMapOfRealInteger instantiates DoubleMap from TCollection  
37                                         (Real from Standard, 
38                                          Integer from Standard, 
39                                          MapRealHasher from TColStd, 
40                                          MapIntegerHasher from TColStd);
41
42
43 ---    HashCode (thePnt   : Pnt from gp;
44 ---              theUpper : Integer from Standard)
45 ---    returns Integer from Standard;
46     
47 ---    IsEqual (thePnt1   : Pnt from gp;
48 ---             thePnt2   : Pnt from gp)
49 ---    returns Boolean from Standard;
50     
51     Commands(DI : in out Interpretor from Draw);
52     Commands1(DI : in out Interpretor from Draw);
53     Commands2(DI : in out Interpretor from Draw);
54     Commands3(DI : in out Interpretor from Draw);
55     Commands4(DI : in out Interpretor from Draw);
56
57 end;