0024624: Lost word in license statement in source files
[occt.git] / src / TColGeom2d / TColGeom2d.cdl
CommitLineData
b311480e 1-- Created on: 1993-04-15
2-- Created by: Philippe DAUTRY
3-- Copyright (c) 1993-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17package TColGeom2d
18
19
20 ---Purpose :
21-- The package TColGeom2d provides standard and
22-- frequently used instantiations of generic classes from
23-- the TCollection package with geometric objects from the Geom2d package.
24
25uses TCollection, Geom2d
26
27is
28
29
30 class Array1OfGeometry
31 instantiates Array1 from TCollection (Geometry from Geom2d);
32 class Array1OfCurve
33 instantiates Array1 from TCollection (Curve from Geom2d);
34 class Array1OfBoundedCurve
35 instantiates Array1 from TCollection (BoundedCurve from Geom2d);
36 class Array1OfBezierCurve
37 instantiates Array1 from TCollection (BezierCurve from Geom2d);
38 class Array1OfBSplineCurve
39 instantiates Array1 from TCollection (BSplineCurve from Geom2d);
40
41 class HArray1OfGeometry
42 instantiates HArray1 from TCollection (Geometry from Geom2d,
43 Array1OfGeometry from TColGeom2d);
44 class HArray1OfCurve
45 instantiates HArray1 from TCollection (Curve from Geom2d,
46 Array1OfCurve from TColGeom2d);
47 class HArray1OfBoundedCurve
48 instantiates HArray1 from TCollection (BoundedCurve from Geom2d,
49 Array1OfBoundedCurve from TColGeom2d);
50 class HArray1OfBezierCurve
51 instantiates HArray1 from TCollection (BezierCurve from Geom2d,
52 Array1OfBezierCurve from TColGeom2d);
53 class HArray1OfBSplineCurve
54 instantiates HArray1 from TCollection (BSplineCurve from Geom2d,
55 Array1OfBSplineCurve from TColGeom2d);
56
57
58 class SequenceOfGeometry
59 instantiates Sequence from TCollection (Geometry from Geom2d);
60 class SequenceOfCurve
61 instantiates Sequence from TCollection (Curve from Geom2d);
62 class SequenceOfBoundedCurve
63 instantiates Sequence from TCollection (BoundedCurve from Geom2d);
64
65 class HSequenceOfGeometry
66 instantiates HSequence from TCollection (Geometry from Geom2d,
67 SequenceOfGeometry from TColGeom2d);
68 class HSequenceOfCurve
69 instantiates HSequence from TCollection (Curve from Geom2d,
70 SequenceOfCurve from TColGeom2d);
71 class HSequenceOfBoundedCurve
72 instantiates HSequence from TCollection (BoundedCurve from Geom2d,
73 SequenceOfBoundedCurve from TColGeom2d);
74
75
76end TColGeom2d;