0024624: Lost word in license statement in source files
[occt.git] / src / BRepFeat / BRepFeat_Form.lxx
1 // Created on: 1997-02-06
2 // Created by: Olga PILLOT
3 // Copyright (c) 1997-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 //=======================================================================
18 //function : BRepFeatForm
19 //purpose  : 
20 //=======================================================================
21
22 inline BRepFeat_Form::BRepFeat_Form () :
23    myFuse(Standard_False),
24    myModify(Standard_False),
25    myPerfSelection(BRepFeat_NoSelection),
26    myJustGluer(Standard_False),
27    myJustFeat(Standard_False),
28    mySbOK(Standard_False),mySkOK(Standard_False),
29    myGSOK(Standard_False),mySFOK(Standard_False),
30    mySUOK(Standard_False),myGFOK(Standard_False),
31    myPSOK(Standard_False),
32    myStatusError(BRepFeat_NotInitialized)
33
34 {}
35
36 //=======================================================================
37 //function : BasisShapeValid
38 //purpose  : 
39 //=======================================================================
40
41 inline void BRepFeat_Form::BasisShapeValid()
42 {
43   mySbOK = Standard_True;
44 }
45 //=======================================================================
46 //function : PerfSelectionValid
47 //purpose  : 
48 //=======================================================================
49
50 inline void BRepFeat_Form::PerfSelectionValid()
51 {
52   myPSOK = Standard_True;
53 }
54
55 //=======================================================================
56 //function : GeneratedShapeValid
57 //purpose  : 
58 //=======================================================================
59
60 inline void BRepFeat_Form::GeneratedShapeValid()
61 {
62   myGSOK = Standard_True;
63 }
64 //=======================================================================
65 //function : ShapeFromValid
66 //purpose  : 
67 //=======================================================================
68
69 inline void BRepFeat_Form::ShapeFromValid()
70 {
71   mySFOK = Standard_True;
72 }
73 //=======================================================================
74 //function : ShapeUntilValid
75 //purpose  : 
76 //=======================================================================
77
78 inline void BRepFeat_Form::ShapeUntilValid()
79 {
80   mySUOK = Standard_True;
81 }
82
83 //=======================================================================
84 //function : GluedFacesValid
85 //purpose  : 
86 //=======================================================================
87
88 inline void BRepFeat_Form::GluedFacesValid()
89 {
90   myGFOK = Standard_True;
91 }
92
93 //=======================================================================
94 //function : SketchFaceValid
95 //purpose  : 
96 //=======================================================================
97
98 inline void BRepFeat_Form::SketchFaceValid()
99 {
100   mySkOK = Standard_True;
101 }
102
103
104