mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +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:
10
src/StepRepr/FILES
Normal file
10
src/StepRepr/FILES
Normal file
@@ -0,0 +1,10 @@
|
||||
StepRepr_Array1OfRepresentationItem.hxx
|
||||
StepRepr_HArray1OfRepresentationItem.hxx
|
||||
StepRepr_Array1OfPropertyDefinitionRepresentation.hxx
|
||||
StepRepr_HArray1OfPropertyDefinitionRepresentation.hxx
|
||||
StepRepr_Array1OfMaterialPropertyRepresentation.hxx
|
||||
StepRepr_HArray1OfMaterialPropertyRepresentation.hxx
|
||||
StepRepr_SequenceOfMaterialPropertyRepresentation.hxx
|
||||
StepRepr_HSequenceOfMaterialPropertyRepresentation.hxx
|
||||
StepRepr_SequenceOfRepresentationItem.hxx
|
||||
StepRepr_HSequenceOfRepresentationItem.hxx
|
@@ -96,8 +96,8 @@ is
|
||||
class ShapeRepresentationRelationshipWithTransformation;
|
||||
|
||||
|
||||
class Array1OfRepresentationItem instantiates Array1 from TCollection (RepresentationItem);
|
||||
class HArray1OfRepresentationItem instantiates HArray1 from TCollection (RepresentationItem,Array1OfRepresentationItem from StepRepr);
|
||||
imported Array1OfRepresentationItem;
|
||||
imported transient class HArray1OfRepresentationItem;
|
||||
|
||||
-- Added from Rev2 to Rev4
|
||||
|
||||
@@ -129,17 +129,17 @@ is
|
||||
class ReprItemAndLengthMeasureWithUnit;
|
||||
|
||||
|
||||
class Array1OfPropertyDefinitionRepresentation instantiates Array1 from TCollection (PropertyDefinitionRepresentation);
|
||||
class HArray1OfPropertyDefinitionRepresentation instantiates HArray1 from TCollection (PropertyDefinitionRepresentation, Array1OfPropertyDefinitionRepresentation from StepRepr);
|
||||
imported Array1OfPropertyDefinitionRepresentation;
|
||||
imported transient class HArray1OfPropertyDefinitionRepresentation;
|
||||
|
||||
class Array1OfMaterialPropertyRepresentation instantiates Array1 from TCollection (MaterialPropertyRepresentation);
|
||||
class HArray1OfMaterialPropertyRepresentation instantiates HArray1 from TCollection (MaterialPropertyRepresentation, Array1OfMaterialPropertyRepresentation from StepRepr);
|
||||
imported Array1OfMaterialPropertyRepresentation;
|
||||
imported transient class HArray1OfMaterialPropertyRepresentation;
|
||||
|
||||
class SequenceOfMaterialPropertyRepresentation instantiates Sequence from TCollection (MaterialPropertyRepresentation);
|
||||
class HSequenceOfMaterialPropertyRepresentation instantiates HSequence from TCollection (MaterialPropertyRepresentation, SequenceOfMaterialPropertyRepresentation from StepRepr);
|
||||
imported SequenceOfMaterialPropertyRepresentation;
|
||||
imported transient class HSequenceOfMaterialPropertyRepresentation;
|
||||
|
||||
class SequenceOfRepresentationItem instantiates Sequence from TCollection (RepresentationItem);
|
||||
class HSequenceOfRepresentationItem instantiates HSequence from TCollection (RepresentationItem, SequenceOfRepresentationItem from StepRepr);
|
||||
imported SequenceOfRepresentationItem;
|
||||
imported transient class HSequenceOfRepresentationItem;
|
||||
|
||||
|
||||
-- Protocol returns Protocol from StepRepr;
|
||||
|
@@ -0,0 +1,26 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_Array1OfMaterialPropertyRepresentation_HeaderFile
|
||||
#define StepRepr_Array1OfMaterialPropertyRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_MaterialPropertyRepresentation.hxx>
|
||||
#include <NCollection_Array1.hxx>
|
||||
|
||||
typedef NCollection_Array1<Handle(StepRepr_MaterialPropertyRepresentation)> StepRepr_Array1OfMaterialPropertyRepresentation;
|
||||
|
||||
|
||||
#endif
|
@@ -0,0 +1,26 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_Array1OfPropertyDefinitionRepresentation_HeaderFile
|
||||
#define StepRepr_Array1OfPropertyDefinitionRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_PropertyDefinitionRepresentation.hxx>
|
||||
#include <NCollection_Array1.hxx>
|
||||
|
||||
typedef NCollection_Array1<Handle(StepRepr_PropertyDefinitionRepresentation)> StepRepr_Array1OfPropertyDefinitionRepresentation;
|
||||
|
||||
|
||||
#endif
|
26
src/StepRepr/StepRepr_Array1OfRepresentationItem.hxx
Normal file
26
src/StepRepr/StepRepr_Array1OfRepresentationItem.hxx
Normal file
@@ -0,0 +1,26 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_Array1OfRepresentationItem_HeaderFile
|
||||
#define StepRepr_Array1OfRepresentationItem_HeaderFile
|
||||
|
||||
#include <StepRepr_RepresentationItem.hxx>
|
||||
#include <NCollection_Array1.hxx>
|
||||
|
||||
typedef NCollection_Array1<Handle(StepRepr_RepresentationItem)> StepRepr_Array1OfRepresentationItem;
|
||||
|
||||
|
||||
#endif
|
@@ -0,0 +1,27 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_HArray1OfMaterialPropertyRepresentation_HeaderFile
|
||||
#define StepRepr_HArray1OfMaterialPropertyRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_MaterialPropertyRepresentation.hxx>
|
||||
#include <StepRepr_Array1OfMaterialPropertyRepresentation.hxx>
|
||||
#include <NCollection_DefineHArray1.hxx>
|
||||
|
||||
DEFINE_HARRAY1(StepRepr_HArray1OfMaterialPropertyRepresentation, StepRepr_Array1OfMaterialPropertyRepresentation)
|
||||
|
||||
|
||||
#endif
|
@@ -0,0 +1,27 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_HArray1OfPropertyDefinitionRepresentation_HeaderFile
|
||||
#define StepRepr_HArray1OfPropertyDefinitionRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_PropertyDefinitionRepresentation.hxx>
|
||||
#include <StepRepr_Array1OfPropertyDefinitionRepresentation.hxx>
|
||||
#include <NCollection_DefineHArray1.hxx>
|
||||
|
||||
DEFINE_HARRAY1(StepRepr_HArray1OfPropertyDefinitionRepresentation, StepRepr_Array1OfPropertyDefinitionRepresentation)
|
||||
|
||||
|
||||
#endif
|
27
src/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx
Normal file
27
src/StepRepr/StepRepr_HArray1OfRepresentationItem.hxx
Normal file
@@ -0,0 +1,27 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_HArray1OfRepresentationItem_HeaderFile
|
||||
#define StepRepr_HArray1OfRepresentationItem_HeaderFile
|
||||
|
||||
#include <StepRepr_RepresentationItem.hxx>
|
||||
#include <StepRepr_Array1OfRepresentationItem.hxx>
|
||||
#include <NCollection_DefineHArray1.hxx>
|
||||
|
||||
DEFINE_HARRAY1(StepRepr_HArray1OfRepresentationItem, StepRepr_Array1OfRepresentationItem)
|
||||
|
||||
|
||||
#endif
|
@@ -0,0 +1,27 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_HSequenceOfMaterialPropertyRepresentation_HeaderFile
|
||||
#define StepRepr_HSequenceOfMaterialPropertyRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_MaterialPropertyRepresentation.hxx>
|
||||
#include <StepRepr_SequenceOfMaterialPropertyRepresentation.hxx>
|
||||
#include <NCollection_DefineHSequence.hxx>
|
||||
|
||||
DEFINE_HSEQUENCE(StepRepr_HSequenceOfMaterialPropertyRepresentation, StepRepr_SequenceOfMaterialPropertyRepresentation)
|
||||
|
||||
|
||||
#endif
|
27
src/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx
Normal file
27
src/StepRepr/StepRepr_HSequenceOfRepresentationItem.hxx
Normal file
@@ -0,0 +1,27 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_HSequenceOfRepresentationItem_HeaderFile
|
||||
#define StepRepr_HSequenceOfRepresentationItem_HeaderFile
|
||||
|
||||
#include <StepRepr_RepresentationItem.hxx>
|
||||
#include <StepRepr_SequenceOfRepresentationItem.hxx>
|
||||
#include <NCollection_DefineHSequence.hxx>
|
||||
|
||||
DEFINE_HSEQUENCE(StepRepr_HSequenceOfRepresentationItem, StepRepr_SequenceOfRepresentationItem)
|
||||
|
||||
|
||||
#endif
|
@@ -0,0 +1,26 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_SequenceOfMaterialPropertyRepresentation_HeaderFile
|
||||
#define StepRepr_SequenceOfMaterialPropertyRepresentation_HeaderFile
|
||||
|
||||
#include <StepRepr_MaterialPropertyRepresentation.hxx>
|
||||
#include <NCollection_Sequence.hxx>
|
||||
|
||||
typedef NCollection_Sequence<Handle(StepRepr_MaterialPropertyRepresentation)> StepRepr_SequenceOfMaterialPropertyRepresentation;
|
||||
|
||||
|
||||
#endif
|
26
src/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx
Normal file
26
src/StepRepr/StepRepr_SequenceOfRepresentationItem.hxx
Normal file
@@ -0,0 +1,26 @@
|
||||
// Created on: 1995-12-01
|
||||
// Created by: EXPRESS->CDL V0.2 Translator
|
||||
// Copyright (c) 1995-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 StepRepr_SequenceOfRepresentationItem_HeaderFile
|
||||
#define StepRepr_SequenceOfRepresentationItem_HeaderFile
|
||||
|
||||
#include <StepRepr_RepresentationItem.hxx>
|
||||
#include <NCollection_Sequence.hxx>
|
||||
|
||||
typedef NCollection_Sequence<Handle(StepRepr_RepresentationItem)> StepRepr_SequenceOfRepresentationItem;
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user