1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-13 14:27:08 +03:00

0024750: Replace instantiations of TCollection generic classes by NCollection templates -- automatic

Automatic upgrade of code by command "occt_upgrade . -tcollection"
This commit is contained in:
abv
2015-06-28 15:16:42 +03:00
parent 4f953fa991
commit df8d39700d
1424 changed files with 28413 additions and 2013 deletions

6
src/IGESGeom/FILES Normal file
View File

@@ -0,0 +1,6 @@
IGESGeom_Array1OfBoundary.hxx
IGESGeom_Array1OfCurveOnSurface.hxx
IGESGeom_Array1OfTransformationMatrix.hxx
IGESGeom_HArray1OfBoundary.hxx
IGESGeom_HArray1OfCurveOnSurface.hxx
IGESGeom_HArray1OfTransformationMatrix.hxx

View File

@@ -114,18 +114,13 @@ is
-- Instantiations :
class Array1OfBoundary instantiates Array1 from TCollection (Boundary);
class Array1OfCurveOnSurface instantiates
Array1 from TCollection (CurveOnSurface);
class Array1OfTransformationMatrix instantiates
Array1 from TCollection (TransformationMatrix);
imported Array1OfBoundary;
imported Array1OfCurveOnSurface;
imported Array1OfTransformationMatrix;
class HArray1OfBoundary instantiates HArray1 from TCollection
(Boundary,Array1OfBoundary);
class HArray1OfCurveOnSurface instantiates HArray1 from TCollection
(CurveOnSurface,Array1OfCurveOnSurface);
class HArray1OfTransformationMatrix instantiates HArray1 from TCollection
(TransformationMatrix,Array1OfTransformationMatrix);
imported transient class HArray1OfBoundary;
imported transient class HArray1OfCurveOnSurface;
imported transient class HArray1OfTransformationMatrix;
-- Package Methods

View File

@@ -0,0 +1,26 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_Array1OfBoundary_HeaderFile
#define IGESGeom_Array1OfBoundary_HeaderFile
#include <IGESGeom_Boundary.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(IGESGeom_Boundary)> IGESGeom_Array1OfBoundary;
#endif

View File

@@ -0,0 +1,26 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_Array1OfCurveOnSurface_HeaderFile
#define IGESGeom_Array1OfCurveOnSurface_HeaderFile
#include <IGESGeom_CurveOnSurface.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(IGESGeom_CurveOnSurface)> IGESGeom_Array1OfCurveOnSurface;
#endif

View File

@@ -0,0 +1,26 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_Array1OfTransformationMatrix_HeaderFile
#define IGESGeom_Array1OfTransformationMatrix_HeaderFile
#include <IGESGeom_TransformationMatrix.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(IGESGeom_TransformationMatrix)> IGESGeom_Array1OfTransformationMatrix;
#endif

View File

@@ -0,0 +1,27 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_HArray1OfBoundary_HeaderFile
#define IGESGeom_HArray1OfBoundary_HeaderFile
#include <IGESGeom_Boundary.hxx>
#include <IGESGeom_Array1OfBoundary.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(IGESGeom_HArray1OfBoundary, IGESGeom_Array1OfBoundary)
#endif

View File

@@ -0,0 +1,27 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_HArray1OfCurveOnSurface_HeaderFile
#define IGESGeom_HArray1OfCurveOnSurface_HeaderFile
#include <IGESGeom_CurveOnSurface.hxx>
#include <IGESGeom_Array1OfCurveOnSurface.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(IGESGeom_HArray1OfCurveOnSurface, IGESGeom_Array1OfCurveOnSurface)
#endif

View File

@@ -0,0 +1,27 @@
// Created on: 1993-01-11
// Created by: CKY / Contract Toubro-Larsen ( Kiran )
// 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.
#ifndef IGESGeom_HArray1OfTransformationMatrix_HeaderFile
#define IGESGeom_HArray1OfTransformationMatrix_HeaderFile
#include <IGESGeom_TransformationMatrix.hxx>
#include <IGESGeom_Array1OfTransformationMatrix.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(IGESGeom_HArray1OfTransformationMatrix, IGESGeom_Array1OfTransformationMatrix)
#endif