0023024: Update headers of OCCT files
[occt.git] / src / Adaptor3d / Adaptor3d_GenHCurve.cdl
1 -- Created on: 1994-02-23
2 -- Created by: model
3 -- Copyright (c) 1994-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 generic class GenHCurve from Adaptor3d 
24     (TheCurve as Curve from Adaptor3d)
25
26 inherits HCurve from Adaptor3d 
27
28         ---Purpose: Generic class used to create a curve manipulated
29         --          with Handle from a curve described by the class Curve.
30
31 uses 
32      Curve        from Adaptor3d
33
34      
35 raises
36     
37     OutOfRange          from Standard,
38     NoSuchObject        from Standard,
39     DomainError         from Standard
40  
41 is
42
43     Create
44         ---Purpose: Creates an empty GenHCurve.
45         returns mutable GenHCurve from Adaptor3d; 
46     
47
48     Create(C: TheCurve)
49     
50         ---Purpose: Creates a GenHCurve from a Curve
51         returns mutable GenHCurve from Adaptor3d; 
52
53
54     Set(me: mutable; C: TheCurve)
55     
56         ---Purpose: Sets the field of the GenHCurve.
57         is static;
58
59     Curve(me)
60     
61         ---Purpose: Returns the curve used to create the GenHCurve.
62         --          This is redefined from HCurve, cannot be inline.
63         --          
64         ---C++: return const &
65
66         returns Curve from Adaptor3d;
67
68     GetCurve(me:mutable)
69     
70         ---Purpose: Returns the curve used to create the GenHCurve.
71         --          This is redefined from HCurve, cannot be inline.
72         --          
73         ---C++: return  &
74
75         returns Curve from Adaptor3d;
76
77
78     ChangeCurve(me : mutable)
79     
80         ---Purpose: Returns the curve used to create the GenHCurve.
81         --          
82         ---C++: return &
83         ---C++: inline
84
85         returns TheCurve;
86
87 fields
88
89     myCurve : TheCurve is protected;
90
91 end GenHCurve;