Salome HOME
Change comments style in geompy.py for right processing with HappyDoc
[modules/geom.git] / src / GEOMAlgo / GEOMAlgo_CoupleOfShapes.cdl
1 -- File:        GEOMAlgo_CoupleOfShapes.cdl
2 -- Created:     Wed Dec 15 13:00:10 2004
3 -- Author:      Peter KURNEV
4 --              <pkv@irinox>
5 ---Copyright:    Matra Datavision 2004
6
7
8 class CoupleOfShapes from GEOMAlgo 
9
10         ---Purpose: 
11
12 uses
13     Shape from TopoDS
14
15 --raises
16
17 is 
18     Create 
19         returns CoupleOfShapes from GEOMAlgo; 
20
21     SetShapes(me:out; 
22             aS1: Shape from TopoDS; 
23             aS2: Shape from TopoDS);
24      
25     SetShape1(me:out; 
26             aS1: Shape from TopoDS); 
27          
28     SetShape2(me:out; 
29             aS2: Shape from TopoDS);     
30
31     Shapes(me; 
32             aS1:out Shape from TopoDS; 
33             aS2:out Shape from TopoDS); 
34
35     Shape1(me) 
36         returns Shape from TopoDS; 
37     ---C++:return const &  
38      
39     Shape2(me) 
40         returns Shape from TopoDS; 
41     ---C++:return const & 
42
43 fields  
44
45     myShape1: Shape from TopoDS is protected;   
46     myShape2: Shape from TopoDS is protected;   
47
48 end CoupleOfShapes;