0024927: Getting rid of "Persistent" functionality -- Code
[occt.git] / src / PGeom2d / PGeom2d_Vector.cdl
diff --git a/src/PGeom2d/PGeom2d_Vector.cdl b/src/PGeom2d/PGeom2d_Vector.cdl
deleted file mode 100644 (file)
index b6cdc48..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
--- Created on: 1993-04-06
--- Created by: Philippe DAUTRY
--- Copyright (c) 1993-1999 Matra Datavision
--- Copyright (c) 1999-2014 OPEN CASCADE SAS
---
--- This file is part of Open CASCADE Technology software library.
---
--- This library is free software; you can redistribute it and/or modify it under
--- the terms of the GNU Lesser General Public License version 2.1 as published
--- by the Free Software Foundation, with special exception defined in the file
--- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
--- distribution for complete text of the license and disclaimer of any warranty.
---
--- Alternatively, this file may be used under the terms of Open CASCADE
--- commercial license or contractual agreement.
-
-deferred class Vector from PGeom2d inherits Geometry from PGeom2d
-
-        ---Purpose :  Defines a vector in 3D space.
-        --  It can be a Direction (unitary vector) or a vector
-        --  with magnitude.
-        --  
-       ---See Also : Vector from Geom2d.
-
-uses Vec2d from gp
-
-is
-
-
-    Initialize;
-       ---Purpose: Initializes the field(s) with default value(s).
-       ---Level: Advanced 
-
-
-    Initialize(aVec: Vec2d from gp);
-       ---Purpose: Initializes the field vec with <aVec>.
-       ---Level: Advanced 
-
-
-  Vec (me: mutable; aVec: Vec2d from gp);
-        ---Purpose : Set the field vec.
-       ---Level: Advanced 
-
-
-  Vec (me)  returns Vec2d from gp;
-        ---Purpose : Returns the value of the field vec.
-       ---Level: Advanced 
-
-
-fields
-
-  vec : Vec2d from gp is protected;
-
-end;