0022627: Change OCCT memory management defaults
[occt.git] / src / GeomToStep / GeomToStep_MakeConicalSurface.cdl
CommitLineData
7fd59977 1-- File: GeomToStep_MakeConicalSurface.cdl
2-- Created: Mon Jun 14 16:05:32 1993
3-- Author: Martine LANGLOIS
4-- <mla@mastox>
5---Copyright: Matra Datavision 1993
6
7class MakeConicalSurface from GeomToStep inherits Root from GeomToStep
8
9 ---Purpose: This class implements the mapping between class
10 -- ConicalSurface from Geom and the class
11 -- ConicalSurface from StepGeom which describes a
12 -- conical_surface from Prostep
13
14uses ConicalSurface from Geom,
15 ConicalSurface from StepGeom
16
17raises NotDone from StdFail
18
19is
20
21
22
23Create ( CSurf : ConicalSurface from Geom ) returns MakeConicalSurface;
24
25Value (me) returns ConicalSurface from StepGeom
26 raises NotDone
27 is static;
28 ---C++: return const&
29
30fields
31
32 theConicalSurface : ConicalSurface from StepGeom;
33 -- The solution from StepGeom
34
35end MakeConicalSurface;
36
37