0030924: Coding - incorrect header in file OSD_ThreadPool.hxx
authorkgv <kgv@opencascade.com>
Wed, 28 Aug 2019 07:09:56 +0000 (10:09 +0300)
committerapn <apn@opencascade.com>
Thu, 29 Aug 2019 16:02:45 +0000 (19:02 +0300)
Fixed license statements within files BRepGProp_MeshProps.cxx, BRepGProp_MeshProps.hxx,
OSD_ThreadPool.cxx and OSD_ThreadPool.hxx.

Removed non-ASCII char from BRepMesh_ModelHealer.hxx.

src/BRepGProp/BRepGProp_MeshProps.cxx
src/BRepGProp/BRepGProp_MeshProps.hxx
src/BRepMesh/BRepMesh_ModelHealer.hxx
src/OSD/OSD_ThreadPool.cxx
src/OSD/OSD_ThreadPool.hxx

index 9611dce60249c73321f1273c8a93ae630506183b..0fc8af88fea7bef513c7eeb0782f8e3446772d34 100644 (file)
@@ -1,25 +1,26 @@
 // Copyright (c) 2018 OPEN CASCADE SAS
-// This file is part of commercial software by OPEN CASCADE SAS, 
-// furnished in accordance with the terms and conditions of the contract 
-// and with the inclusion of this copyright notice. 
-// This file or any part thereof may not be provided or otherwise 
-// made available to any third party. 
-// 
-// No ownership title to the software is transferred hereby. 
-// 
-// OPEN CASCADE SAS makes no representation or warranties with respect to the 
-// performance of this software, and specifically disclaims any responsibility 
-// for any damages, special or consequential, connected with its use.
+//
+// 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 <BRepGProp_MeshProps.hxx>
+
+#include <BRepGProp.hxx>
+#include <ElSLib.hxx>
+#include <gp_Ax3.hxx>
 #include <gp_Pnt.hxx>
+#include <GProp.hxx>
 #include <Poly_Triangulation.hxx>
 #include <Poly_Triangle.hxx>
-#include<ElSLib.hxx>
-#include<gp_Ax3.hxx>
-#include <BRepGProp.hxx>
 #include <TopLoc_Location.hxx>
-#include <GProp.hxx>
 
 //=======================================================================
 //function : CalculateElSProps
index 77bc69d1331d25a868cefcfdca65207b86cc95ec..379d6ef41dac4708e9c6088f03af46770c013f27 100644 (file)
@@ -1,23 +1,19 @@
 // Copyright (c) 2018 OPEN CASCADE SAS
-// This file is part of commercial software by OPEN CASCADE SAS, 
-// furnished in accordance with the terms and conditions of the contract 
-// and with the inclusion of this copyright notice. 
-// This file or any part thereof may not be provided or otherwise 
-// made available to any third party. 
-// 
-// No ownership title to the software is transferred hereby. 
-// 
-// OPEN CASCADE SAS makes no representation or warranties with respect to the 
-// performance of this software, and specifically disclaims any responsibility 
-// for any damages, special or consequential, connected with its use.
+//
+// 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.
 
 #ifndef _BRepGProp_MeshProps_HeaderFile
 #define _BRepGProp_MeshProps_HeaderFile
 
-#include <Standard.hxx>
-#include <Standard_DefineAlloc.hxx>
-#include <Standard_Handle.hxx>
-#include <Standard_Type.hxx>
 #include <GProp_GProps.hxx>
 #include <TopAbs_Orientation.hxx>
 #include <Poly_Array1OfTriangle.hxx>
@@ -36,11 +32,11 @@ public:
 
   DEFINE_STANDARD_ALLOC
 
-    //! Describes types of geometric objects.
-    //! - Vinert is 3D closed region of space delimited with
-    //!   Point and surface mesh;
-    //! - Sinert is surface mesh in 3D space.
-    typedef enum { Vinert = 0, Sinert } BRepGProp_MeshObjType;
+  //! Describes types of geometric objects.
+  //! - Vinert is 3D closed region of space delimited with
+  //!   Point and surface mesh;
+  //! - Sinert is surface mesh in 3D space.
+  typedef enum { Vinert = 0, Sinert } BRepGProp_MeshObjType;
 
   //! Constructor takes the type of object.
   BRepGProp_MeshProps(const BRepGProp_MeshObjType theType) :
index 14d804e9d7868951f0014e35e3c29e0d5ea4ff4f..2e95c02da448cdb6124ce7ae401cf91e916cc487 100644 (file)
 //! Class implements functionality of model healer tool.
 //! Iterates over model's faces and checks consistency of their wires, 
 //! i.e.whether wires are closed and do not contain self - intersections.
-//! In case if wire contains disconnected parts, ends of adjacent edges 
-//! forming the gaps are connected in parametric space forcibly. The notion 
-//! of this operation is to create correct discrete model defined relatively 
+//! In case if wire contains disconnected parts, ends of adjacent edges
+//! forming the gaps are connected in parametric space forcibly. The notion
+//! of this operation is to create correct discrete model defined relatively
 //! parametric space of target face taking into account connectivity and 
 //! tolerances of 3D space only. This means that there are no specific 
 //! computations are made for the sake of determination of U and V tolerance.
-//! Registers intersections on edges forming the face\92s shape and tries to 
-//! amplify discrete represenation by decreasing of deflection for the target edge. 
+//! Registers intersections on edges forming the face's shape and tries to
+//! amplify discrete represenation by decreasing of deflection for the target edge.
 //! Checks can be performed in parallel mode.
 class BRepMesh_ModelHealer : public IMeshTools_ModelAlgo
 {
index 17c5370cf12a8eb7ac927c1bc0e321b1c7b60703..22c687703e1f379c74e42edfd4f7fe0df5ee993e 100644 (file)
@@ -1,17 +1,16 @@
 // Created by: Kirill Gavrilov
-// Copyright (c) 2017 OPEN CASCADE SAS
+// Copyright (c) 2017-2019 OPEN CASCADE SAS
 //
-// This file is part of commercial software by OPEN CASCADE SAS.
+// This file is part of Open CASCADE Technology software library.
 //
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of this copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any third party.
-// No ownership title to the software is transferred hereby.
+// 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.
 //
-// OPEN CASCADE SAS makes no representation or warranties with respect to the
-// performance of this software, and specifically disclaims any responsibility
-// for any damages, special or consequential, connected with its use.
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
 
 #include <OSD_ThreadPool.hxx>
 
index 50b8f006ab5e4df6255ea521893ee0d2a61e602c..0cef1510dcf013ec7b9b677f5f318e6d5dff81f3 100644 (file)
@@ -1,17 +1,16 @@
 // Created by: Kirill Gavrilov
-// Copyright (c) 2017 OPEN CASCADE SAS
+// Copyright (c) 2017-2019 OPEN CASCADE SAS
 //
-// This file is part of commercial software by OPEN CASCADE SAS.
+// This file is part of Open CASCADE Technology software library.
 //
-// This software is furnished in accordance with the terms and conditions
-// of the contract and with the inclusion of this copyright notice.
-// This software or any other copy thereof may not be provided or otherwise
-// be made available to any third party.
-// No ownership title to the software is transferred hereby.
+// 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.
 //
-// OPEN CASCADE SAS makes no representation or warranties with respect to the
-// performance of this software, and specifically disclaims any responsibility
-// for any damages, special or consequential, connected with its use.
+// Alternatively, this file may be used under the terms of Open CASCADE
+// commercial license or contractual agreement.
 
 #ifndef _OSD_ThreadPool_HeaderFile
 #define _OSD_ThreadPool_HeaderFile