0027232: Configuration - fix mblen missing building issue on Android
[occt.git] / src / BRepFill / BRepFill_DraftLaw.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 53bf464..4c53a06
@@ -1,26 +1,37 @@
-// File:       BRepFill_DraftLaw.cxx
-// Created:    Wed Jan 14 14:41:23 1998
-// Author:     Philippe MANGIN
-//             <pmn@sgi29>
+// Created on: 1998-01-14
+// Created by: Philippe MANGIN
+// Copyright (c) 1998-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.
 
 
-#include <BRepFill_DraftLaw.ixx>
-
+#include <BRepFill_DraftLaw.hxx>
+#include <GeomFill_HArray1OfLocationLaw.hxx>
 #include <GeomFill_LocationDraft.hxx>
 #include <GeomFill_LocationLaw.hxx>
-#include <GeomFill_HArray1OfLocationLaw.hxx>
-
-#include <gp_Vec.hxx>
 #include <gp_Mat.hxx>
-#include <gp_XYZ.hxx>
 #include <gp_Trsf.hxx>
+#include <gp_Vec.hxx>
+#include <gp_XYZ.hxx>
+#include <Standard_Type.hxx>
+#include <TopoDS_Wire.hxx>
 
+IMPLEMENT_STANDARD_RTTIEXT(BRepFill_DraftLaw,BRepFill_Edge3DLaw)
 
 //=======================================================================
 //function : ToG0
 //purpose  : Cacul une tranformation T tq T.M2 = M1
 //=======================================================================
-
 static void ToG0(const gp_Mat& M1, const gp_Mat& M2, gp_Mat& T) {
   T =  M2.Inverted();
   T *= M1;