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

20
src/StepFEA/FILES Normal file
View File

@@ -0,0 +1,20 @@
StepFEA_Array1OfNodeRepresentation.hxx
StepFEA_HArray1OfNodeRepresentation.hxx
StepFEA_Array1OfCurveElementInterval.hxx
StepFEA_HArray1OfCurveElementInterval.hxx
StepFEA_Array1OfCurveElementEndOffset.hxx
StepFEA_HArray1OfCurveElementEndOffset.hxx
StepFEA_Array1OfCurveElementEndRelease.hxx
StepFEA_HArray1OfCurveElementEndRelease.hxx
StepFEA_Array1OfElementRepresentation.hxx
StepFEA_HArray1OfElementRepresentation.hxx
StepFEA_Array1OfDegreeOfFreedom.hxx
StepFEA_HArray1OfDegreeOfFreedom.hxx
StepFEA_SequenceOfElementRepresentation.hxx
StepFEA_HSequenceOfElementRepresentation.hxx
StepFEA_SequenceOfElementGeometricRelationship.hxx
StepFEA_HSequenceOfElementGeometricRelationship.hxx
StepFEA_SequenceOfNodeRepresentation.hxx
StepFEA_HSequenceOfNodeRepresentation.hxx
StepFEA_SequenceOfCurve3dElementProperty.hxx
StepFEA_HSequenceOfCurve3dElementProperty.hxx

View File

@@ -117,42 +117,34 @@ is
class ElementOrElementGroup; -- added 04.02.2003
class Array1OfNodeRepresentation instantiates Array1 from TCollection (NodeRepresentation);
class HArray1OfNodeRepresentation instantiates HArray1 from TCollection (NodeRepresentation, Array1OfNodeRepresentation from StepFEA);
imported Array1OfNodeRepresentation;
imported transient class HArray1OfNodeRepresentation;
class Array1OfCurveElementInterval instantiates Array1 from TCollection (CurveElementInterval);
class HArray1OfCurveElementInterval instantiates HArray1 from TCollection (CurveElementInterval, Array1OfCurveElementInterval from StepFEA);
imported Array1OfCurveElementInterval;
imported transient class HArray1OfCurveElementInterval;
class Array1OfCurveElementEndOffset instantiates Array1 from TCollection (CurveElementEndOffset);
class HArray1OfCurveElementEndOffset instantiates HArray1 from TCollection (CurveElementEndOffset, Array1OfCurveElementEndOffset from StepFEA);
imported Array1OfCurveElementEndOffset;
imported transient class HArray1OfCurveElementEndOffset;
class Array1OfCurveElementEndRelease instantiates Array1 from TCollection (CurveElementEndRelease);
class HArray1OfCurveElementEndRelease instantiates HArray1 from TCollection (CurveElementEndRelease, Array1OfCurveElementEndRelease from StepFEA);
imported Array1OfCurveElementEndRelease;
imported transient class HArray1OfCurveElementEndRelease;
class Array1OfElementRepresentation instantiates Array1 from TCollection (ElementRepresentation);
class HArray1OfElementRepresentation instantiates HArray1 from TCollection (ElementRepresentation, Array1OfElementRepresentation from StepFEA);
imported Array1OfElementRepresentation;
imported transient class HArray1OfElementRepresentation;
class Array1OfDegreeOfFreedom instantiates Array1 from TCollection (DegreeOfFreedom);
class HArray1OfDegreeOfFreedom instantiates HArray1 from TCollection (DegreeOfFreedom, Array1OfDegreeOfFreedom from StepFEA);
imported Array1OfDegreeOfFreedom;
imported transient class HArray1OfDegreeOfFreedom;
class SequenceOfElementRepresentation instantiates Sequence
from TCollection (ElementRepresentation);
class HSequenceOfElementRepresentation instantiates HSequence
from TCollection (ElementRepresentation, SequenceOfElementRepresentation from StepFEA);
imported SequenceOfElementRepresentation;
imported transient class HSequenceOfElementRepresentation;
class SequenceOfElementGeometricRelationship instantiates Sequence
from TCollection (ElementGeometricRelationship);
class HSequenceOfElementGeometricRelationship instantiates HSequence
from TCollection (ElementGeometricRelationship, SequenceOfElementGeometricRelationship from StepFEA);
imported SequenceOfElementGeometricRelationship;
imported transient class HSequenceOfElementGeometricRelationship;
class SequenceOfNodeRepresentation instantiates Sequence
from TCollection (NodeRepresentation);
class HSequenceOfNodeRepresentation instantiates HSequence
from TCollection (NodeRepresentation, SequenceOfNodeRepresentation from StepFEA);
imported SequenceOfNodeRepresentation;
imported transient class HSequenceOfNodeRepresentation;
class SequenceOfCurve3dElementProperty instantiates Sequence
from TCollection (Curve3dElementProperty);
class HSequenceOfCurve3dElementProperty instantiates HSequence
from TCollection (Curve3dElementProperty, SequenceOfCurve3dElementProperty from StepFEA);
imported SequenceOfCurve3dElementProperty;
imported transient class HSequenceOfCurve3dElementProperty;
end;

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfCurveElementEndOffset_HeaderFile
#define StepFEA_Array1OfCurveElementEndOffset_HeaderFile
#include <StepFEA_CurveElementEndOffset.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(StepFEA_CurveElementEndOffset)> StepFEA_Array1OfCurveElementEndOffset;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfCurveElementEndRelease_HeaderFile
#define StepFEA_Array1OfCurveElementEndRelease_HeaderFile
#include <StepFEA_CurveElementEndRelease.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(StepFEA_CurveElementEndRelease)> StepFEA_Array1OfCurveElementEndRelease;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfCurveElementInterval_HeaderFile
#define StepFEA_Array1OfCurveElementInterval_HeaderFile
#include <StepFEA_CurveElementInterval.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(StepFEA_CurveElementInterval)> StepFEA_Array1OfCurveElementInterval;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfDegreeOfFreedom_HeaderFile
#define StepFEA_Array1OfDegreeOfFreedom_HeaderFile
#include <StepFEA_DegreeOfFreedom.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<StepFEA_DegreeOfFreedom> StepFEA_Array1OfDegreeOfFreedom;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfElementRepresentation_HeaderFile
#define StepFEA_Array1OfElementRepresentation_HeaderFile
#include <StepFEA_ElementRepresentation.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(StepFEA_ElementRepresentation)> StepFEA_Array1OfElementRepresentation;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_Array1OfNodeRepresentation_HeaderFile
#define StepFEA_Array1OfNodeRepresentation_HeaderFile
#include <StepFEA_NodeRepresentation.hxx>
#include <NCollection_Array1.hxx>
typedef NCollection_Array1<Handle(StepFEA_NodeRepresentation)> StepFEA_Array1OfNodeRepresentation;
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfCurveElementEndOffset_HeaderFile
#define StepFEA_HArray1OfCurveElementEndOffset_HeaderFile
#include <StepFEA_CurveElementEndOffset.hxx>
#include <StepFEA_Array1OfCurveElementEndOffset.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfCurveElementEndOffset, StepFEA_Array1OfCurveElementEndOffset)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfCurveElementEndRelease_HeaderFile
#define StepFEA_HArray1OfCurveElementEndRelease_HeaderFile
#include <StepFEA_CurveElementEndRelease.hxx>
#include <StepFEA_Array1OfCurveElementEndRelease.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfCurveElementEndRelease, StepFEA_Array1OfCurveElementEndRelease)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfCurveElementInterval_HeaderFile
#define StepFEA_HArray1OfCurveElementInterval_HeaderFile
#include <StepFEA_CurveElementInterval.hxx>
#include <StepFEA_Array1OfCurveElementInterval.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfCurveElementInterval, StepFEA_Array1OfCurveElementInterval)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfDegreeOfFreedom_HeaderFile
#define StepFEA_HArray1OfDegreeOfFreedom_HeaderFile
#include <StepFEA_DegreeOfFreedom.hxx>
#include <StepFEA_Array1OfDegreeOfFreedom.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfDegreeOfFreedom, StepFEA_Array1OfDegreeOfFreedom)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfElementRepresentation_HeaderFile
#define StepFEA_HArray1OfElementRepresentation_HeaderFile
#include <StepFEA_ElementRepresentation.hxx>
#include <StepFEA_Array1OfElementRepresentation.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfElementRepresentation, StepFEA_Array1OfElementRepresentation)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HArray1OfNodeRepresentation_HeaderFile
#define StepFEA_HArray1OfNodeRepresentation_HeaderFile
#include <StepFEA_NodeRepresentation.hxx>
#include <StepFEA_Array1OfNodeRepresentation.hxx>
#include <NCollection_DefineHArray1.hxx>
DEFINE_HARRAY1(StepFEA_HArray1OfNodeRepresentation, StepFEA_Array1OfNodeRepresentation)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HSequenceOfCurve3dElementProperty_HeaderFile
#define StepFEA_HSequenceOfCurve3dElementProperty_HeaderFile
#include <StepFEA_Curve3dElementProperty.hxx>
#include <StepFEA_SequenceOfCurve3dElementProperty.hxx>
#include <NCollection_DefineHSequence.hxx>
DEFINE_HSEQUENCE(StepFEA_HSequenceOfCurve3dElementProperty, StepFEA_SequenceOfCurve3dElementProperty)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HSequenceOfElementGeometricRelationship_HeaderFile
#define StepFEA_HSequenceOfElementGeometricRelationship_HeaderFile
#include <StepFEA_ElementGeometricRelationship.hxx>
#include <StepFEA_SequenceOfElementGeometricRelationship.hxx>
#include <NCollection_DefineHSequence.hxx>
DEFINE_HSEQUENCE(StepFEA_HSequenceOfElementGeometricRelationship, StepFEA_SequenceOfElementGeometricRelationship)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HSequenceOfElementRepresentation_HeaderFile
#define StepFEA_HSequenceOfElementRepresentation_HeaderFile
#include <StepFEA_ElementRepresentation.hxx>
#include <StepFEA_SequenceOfElementRepresentation.hxx>
#include <NCollection_DefineHSequence.hxx>
DEFINE_HSEQUENCE(StepFEA_HSequenceOfElementRepresentation, StepFEA_SequenceOfElementRepresentation)
#endif

View File

@@ -0,0 +1,24 @@
// 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 StepFEA_HSequenceOfNodeRepresentation_HeaderFile
#define StepFEA_HSequenceOfNodeRepresentation_HeaderFile
#include <StepFEA_NodeRepresentation.hxx>
#include <StepFEA_SequenceOfNodeRepresentation.hxx>
#include <NCollection_DefineHSequence.hxx>
DEFINE_HSEQUENCE(StepFEA_HSequenceOfNodeRepresentation, StepFEA_SequenceOfNodeRepresentation)
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_SequenceOfCurve3dElementProperty_HeaderFile
#define StepFEA_SequenceOfCurve3dElementProperty_HeaderFile
#include <StepFEA_Curve3dElementProperty.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<Handle(StepFEA_Curve3dElementProperty)> StepFEA_SequenceOfCurve3dElementProperty;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_SequenceOfElementGeometricRelationship_HeaderFile
#define StepFEA_SequenceOfElementGeometricRelationship_HeaderFile
#include <StepFEA_ElementGeometricRelationship.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<Handle(StepFEA_ElementGeometricRelationship)> StepFEA_SequenceOfElementGeometricRelationship;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_SequenceOfElementRepresentation_HeaderFile
#define StepFEA_SequenceOfElementRepresentation_HeaderFile
#include <StepFEA_ElementRepresentation.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<Handle(StepFEA_ElementRepresentation)> StepFEA_SequenceOfElementRepresentation;
#endif

View File

@@ -0,0 +1,23 @@
// 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 StepFEA_SequenceOfNodeRepresentation_HeaderFile
#define StepFEA_SequenceOfNodeRepresentation_HeaderFile
#include <StepFEA_NodeRepresentation.hxx>
#include <NCollection_Sequence.hxx>
typedef NCollection_Sequence<Handle(StepFEA_NodeRepresentation)> StepFEA_SequenceOfNodeRepresentation;
#endif