0024428: Implementation of LGPL license
[occt.git] / src / GeomTools / GeomTools_Curve2dSet.cdl
CommitLineData
b311480e 1-- Created on: 1993-07-19
2-- Created by: Remi LEQUETTE
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--
973c2be1 8-- This library is free software; you can redistribute it and / or modify it
9-- under the terms of the GNU Lesser General Public version 2.1 as published
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
17class Curve2dSet from GeomTools
18
19 ---Purpose: Stores a set of Curves from Geom2d.
20
21uses
22 Curve from Geom2d,
23 IndexedMapOfTransient from TColStd,
24 ProgressIndicator from Message
25
26raises
27 OutOfRange from Standard
28
29is
30
31 Create returns Curve2dSet from GeomTools;
32 ---Purpose: Returns an empty set of Curves.
33
34 Clear(me : in out)
35 ---Purpose: Clears the content of the set.
36 is static;
37
38 Add(me : in out; C : Curve from Geom2d) returns Integer
39 ---Purpose: Incorporate a new Curve in the set and returns
40 -- its index.
41 is static;
42
43 Curve2d(me; I : Integer) returns Curve from Geom2d
44 ---Purpose: Returns the Curve of index <I>.
45 raises
46 OutOfRange from Standard
47 is static;
48
49 Index(me; C : Curve from Geom2d) returns Integer
50 ---Purpose: Returns the index of <L>.
51 is static;
52
53 Dump(me; OS : in out OStream)
54 ---Purpose: Dumps the content of me on the stream <OS>.
55 is static;
56
57 Write(me; OS : in out OStream)
58 ---Purpose: Writes the content of me on the stream <OS> in a
59 -- format that can be read back by Read.
60 is static;
61
62 Read(me : in out; IS : in out IStream)
63 ---Purpose: Reads the content of me from the stream <IS>. me
64 -- is first cleared.
65 --
66 is static;
67
68 --
69 -- class methods to write an read curves
70 --
71
72 PrintCurve2d(myclass; C : Curve from Geom2d;
73 OS : in out OStream;
74 compact : Boolean = Standard_False);
75 ---Purpose: Dumps the curve on the stream, if compact is True
76 -- use the compact format that can be read back.
77
78 ReadCurve2d(myclass; IS : in out IStream;
79 C : in out Curve from Geom2d)
80 returns IStream;
81 ---Purpose: Reads the curve from the stream. The curve is
82 -- assumed to have been writtent with the Print
83 -- method (compact = True).
84 --
85 ---C++: return &
86
87 SetProgress(me : in out; PR : ProgressIndicator from Message);
88
89 GetProgress(me) returns ProgressIndicator from Message;
90
91fields
92
93 myMap : IndexedMapOfTransient from TColStd;
94 myProgress : ProgressIndicator from Message;
95
96end Curve2dSet;
97
98