0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / ApproxInt / ApproxInt_SvSurfaces.cdl
diff --git a/src/ApproxInt/ApproxInt_SvSurfaces.cdl b/src/ApproxInt/ApproxInt_SvSurfaces.cdl
deleted file mode 100644 (file)
index 00433dd..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
--- Created on: 1993-03-17
--- Created by: Laurent BUCHARD
--- 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 SvSurfaces from ApproxInt
-
-uses 
-    Pnt     from gp,
-    Pnt2d   from gp,
-    Vec     from gp,
-    Vec2d   from gp
-
-is 
-
-    Compute(me: in out; 
-            u1,v1,u2,v2: in out Real from Standard;
-           Pt: out Pnt from gp;
-           Tg: out Vec from gp;
-           Tguv1,Tguv2: out Vec2d from gp)
-           ---Purpose: returns True if Tg,Tguv1 Tguv2 can be computed.
-       returns Boolean from Standard is deferred;
-
-    Pnt(me: in out;
-       u1,v1,u2,v2: in Real from Standard;
-       P: out Pnt from gp)  is deferred;
-
-    Tangency(me: in out;
-            u1,v1,u2,v2: in Real from Standard;
-            Tg: out Vec from gp)
-       returns Boolean from Standard is deferred;
-
-    TangencyOnSurf1(me: in out;
-                   u1,v1,u2,v2: in Real from Standard;
-                   Tg: out Vec2d from gp)
-       returns Boolean from Standard is deferred;
-
-    TangencyOnSurf2(me: in out;
-                   u1,v1,u2,v2: in Real from Standard;
-                   Tg: out Vec2d from gp)
-       returns Boolean from Standard is deferred;
-
-    ---C++: alias "  Standard_EXPORT virtual ~ApproxInt_SvSurfaces();"
-    
-end SvSurfaces;
-
-
-