Salome HOME
PAL7441. Pb with MakePartition. Fix done by PKV.
[modules/geom.git] / src / NMTTools / NMTTools_PCurveMaker.cdl
1 -- File:        NMTTools_PCurveMaker.cdl
2 -- Created:      
3 -- Author:      Peter KURNEV
4 --              <pkv@irinox>
5
6 class PCurveMaker from NMTTools 
7
8         ---Purpose:  
9         --  Class provides computation p-curves for the edges and theirs  
10         --- split parts         
11
12 uses 
13     PDSFiller from NMTTools
14     
15 is   
16     Create (aFiller:out PDSFiller from NMTTools)  
17         returns PCurveMaker from NMTTools; 
18         ---Purpose:  
19         --- Constructor 
20         ---
21     Do(me:out);   
22         ---Purpose: 
23         --- Launch the processor   
24         ---
25     IsDone(me) 
26         returns Boolean from Standard;  
27         ---Purpose:  
28         --- Returns TRUE if Ok       
29         ---
30         
31 fields  
32     myDSFiller: PDSFiller from NMTTools         is protected;
33     myIsDone  : Boolean   from Standard         is protected;   
34     
35 end PCurveMaker;