1a075aef3d25c30b92c73187904b15a1616f1236
[occt.git] / src / BOPAlgo / BOPAlgo_CheckerSI.cdl
1 -- Created by: Peter Kurnev
2 -- Copyright (c) 2010-2012 OPEN CASCADE SAS
3 -- Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
4 -- Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
5 --                         EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 --
7 -- The content of this file is subject to the Open CASCADE Technology Public
8 -- License Version 6.5 (the "License"). You may not use the content of this file
9 -- except in compliance with the License. Please obtain a copy of the License
10 -- at http://www.opencascade.org and read it completely before using this file.
11 --
12 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
13 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
14 --
15 -- The Original Code and all software distributed under the License is
16 -- distributed on an "AS IS" basis, without warranty of any kind, and the
17 -- Initial Developer hereby disclaims all such warranties, including without
18 -- limitation, any warranties of merchantability, fitness for a particular
19 -- purpose or non-infringement. Please see the License for the specific terms
20 -- and conditions governing the rights and limitations under the License.
21 --
22 class CheckerSI from BOPAlgo 
23     inherits PaveFiller from BOPAlgo  
24     
25     ---Purpose: Checks shape on self-interference.
26
27 is
28     Create 
29         returns CheckerSI from BOPAlgo;  
30     ---C++: alias "Standard_EXPORT virtual ~BOPAlgo_CheckerSI();"  
31     
32
33     Perform(me:out) 
34         is redefined;   
35   
36
37     Init  (me:out) 
38         is redefined protected;
39
40     SetLevelOfCheck(me:out; 
41       theLevel: Integer from Standard); 
42     ---Purpose:  Sets the level of checking shape on self-interference.
43     --           It defines which interferferences will be checked: 
44     --           0 - only V/V; 
45     --           1 - V/V and V/E; 
46     --           2 - V/V, V/E and E/E; 
47     --           3 - V/V, V/E, E/E and V/F;
48     --           4 - V/V, V/E, E/E, V/F and E/F; 
49     --           5 - all interferences, default value. 
50  
51
52     PostTreat  (me:out)  
53         is protected;       
54     ---Purpose: Provides post-tratment actions  
55         
56  
57 fields
58     myLevelOfCheck: Integer from Standard is protected;
59     
60 end CheckerSI;