1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-19 13:40:49 +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

View File

@@ -99,8 +99,7 @@ is
class Patch from AdvApp2Var;
class Strip from AdvApp2Var instantiates
Sequence from TCollection (Iso from AdvApp2Var);
imported Strip;
---Purpose :
-- set of constraints along a same type of Iso on the same level
@@ -108,12 +107,9 @@ is
--
-- Structured Data
class SequenceOfNode from AdvApp2Var instantiates
Sequence from TCollection (Node from AdvApp2Var);
class SequenceOfPatch from AdvApp2Var instantiates
Sequence from TCollection (Patch from AdvApp2Var);
class SequenceOfStrip from AdvApp2Var instantiates
Sequence from TCollection (Strip from AdvApp2Var);
imported SequenceOfNode;
imported SequenceOfPatch;
imported SequenceOfStrip;
--
--

View File

@@ -0,0 +1,26 @@
// Created on: 1996-03-05
// Created by: Joelle CHAUVET
// Copyright (c) 1996-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 AdvApp2Var_SequenceOfNode_HeaderFile
#define AdvApp2Var_SequenceOfNode_HeaderFile
#include <AdvApp2Var_Node.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<AdvApp2Var_Node> AdvApp2Var_SequenceOfNode;
#endif

View File

@@ -0,0 +1,26 @@
// Created on: 1996-03-05
// Created by: Joelle CHAUVET
// Copyright (c) 1996-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 AdvApp2Var_SequenceOfPatch_HeaderFile
#define AdvApp2Var_SequenceOfPatch_HeaderFile
#include <AdvApp2Var_Patch.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<AdvApp2Var_Patch> AdvApp2Var_SequenceOfPatch;
#endif

View File

@@ -0,0 +1,26 @@
// Created on: 1996-03-05
// Created by: Joelle CHAUVET
// Copyright (c) 1996-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 AdvApp2Var_SequenceOfStrip_HeaderFile
#define AdvApp2Var_SequenceOfStrip_HeaderFile
#include <AdvApp2Var_Strip.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<AdvApp2Var_Strip> AdvApp2Var_SequenceOfStrip;
#endif

View File

@@ -0,0 +1,26 @@
// Created on: 1996-03-05
// Created by: Joelle CHAUVET
// Copyright (c) 1996-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 AdvApp2Var_Strip_HeaderFile
#define AdvApp2Var_Strip_HeaderFile
#include <AdvApp2Var_Iso.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<AdvApp2Var_Iso> AdvApp2Var_Strip;
#endif

View File

@@ -17,4 +17,7 @@ AdvApp2Var_MathBase_mathinit.cxx
AdvApp2Var_SysBase.hxx
AdvApp2Var_SysBase.cxx
AdvApp2Var_SysBase_baseinit.cxx
AdvApp2Var_Strip.hxx
AdvApp2Var_SequenceOfNode.hxx
AdvApp2Var_SequenceOfPatch.hxx
AdvApp2Var_SequenceOfStrip.hxx