Salome HOME
IPAL22903: TC650: Store/Restore last GUI state does not work for Isos
[modules/geom.git] / src / GEOMAlgo_NEW / BlockFix_BlockFixAPI.cdl
index 85dd360e27107e18aa9df25d83bf66f65d8d4708..8cb4c49cec72826194b2c75d30ec5440da74e5c4 100644 (file)
@@ -1,4 +1,4 @@
--- Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
+-- Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 --
 -- Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 -- CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 --
 class BlockFixAPI from BlockFix inherits TShared from MMgt
 
-       ---Purpose: 
+       ---Purpose:
 
 uses
 
     Shape from TopoDS,
-    ReShape from ShapeBuild 
+    ReShape from ShapeBuild
 
 is
     Create returns BlockFixAPI from BlockFix;
        ---Purpose: Empty constructor
-       
+
     SetShape(me: mutable; Shape: Shape from TopoDS);
        ---Purpose: Sets the shape to be operated on
        ---C++: inline
 
     Perform(me: mutable);
-       ---Purpose: 
-       
+       ---Purpose:
+
     Shape(me) returns Shape from TopoDS;
        ---Purpose: Returns resulting shape.
        ---C++: inline
-    
+
     Context(me:mutable) returns ReShape from ShapeBuild;
-       ---Purpose: Returns modifiable context for storing the 
+       ---Purpose: Returns modifiable context for storing the
        --          mofifications
        ---C++: inline
        ---C++: return &
-    
+
     Tolerance (me:mutable) returns Real;
        ---Purpose: Returns modifiable tolerance of recognition
        ---C++: inline
        ---C++: return &
 
 fields
-    
+
     myContext     : ReShape from ShapeBuild;
     myShape       : Shape from TopoDS;
     myTolerance   : Real from Standard;
-  
+
 end BlockFixAPI from BlockFix;