Integration of OCCT 6.5.0 from SVN
[occt.git] / src / AppBlend / AppBlend_Line.cdl
1 -- File:        AppBlend_Line.cdl
2 -- Created:     Thu Dec 16 10:20:42 1993
3 -- Author:      Jacques GOUSSARD
4 --              <jag@topsn2>
5 ---Copyright:    Matra Datavision 1993
6
7
8 deferred generic class Line from AppBlend
9     (ThePoint as any)
10
11         ---Purpose: 
12
13 inherits TShared from MMgt
14
15
16 is
17
18     NbPoints(me)
19     
20         returns Integer from Standard;
21
22
23     Point(me; Index: Integer from Standard)
24     
25         returns ThePoint
26         ---C++: inline
27         ---C++: return const &
28
29         is static;
30
31
32
33 end Line;