mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50: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:
2
src/Hatch/FILES
Normal file
2
src/Hatch/FILES
Normal file
@@ -0,0 +1,2 @@
|
||||
Hatch_SequenceOfParameter.hxx
|
||||
Hatch_SequenceOfLine.hxx
|
@@ -43,13 +43,11 @@ is
|
||||
|
||||
private class Parameter;
|
||||
|
||||
private class SequenceOfParameter instantiates Sequence from TCollection
|
||||
(Parameter from Hatch);
|
||||
imported SequenceOfParameter;
|
||||
|
||||
private class Line;
|
||||
|
||||
private class SequenceOfLine instantiates Sequence from TCollection
|
||||
(Line from Hatch);
|
||||
imported SequenceOfLine;
|
||||
|
||||
class Hatcher;
|
||||
|
||||
|
26
src/Hatch/Hatch_SequenceOfLine.hxx
Normal file
26
src/Hatch/Hatch_SequenceOfLine.hxx
Normal file
@@ -0,0 +1,26 @@
|
||||
// Created on: 1992-08-18
|
||||
// Created by: Remi Lequette
|
||||
// Copyright (c) 1992-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 Hatch_SequenceOfLine_HeaderFile
|
||||
#define Hatch_SequenceOfLine_HeaderFile
|
||||
|
||||
#include <Hatch_Line.hxx>
|
||||
#include <NCollection_Sequence.hxx>
|
||||
|
||||
typedef NCollection_Sequence<Hatch_Line> Hatch_SequenceOfLine;
|
||||
|
||||
|
||||
#endif
|
26
src/Hatch/Hatch_SequenceOfParameter.hxx
Normal file
26
src/Hatch/Hatch_SequenceOfParameter.hxx
Normal file
@@ -0,0 +1,26 @@
|
||||
// Created on: 1992-08-18
|
||||
// Created by: Remi Lequette
|
||||
// Copyright (c) 1992-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 Hatch_SequenceOfParameter_HeaderFile
|
||||
#define Hatch_SequenceOfParameter_HeaderFile
|
||||
|
||||
#include <Hatch_Parameter.hxx>
|
||||
#include <NCollection_Sequence.hxx>
|
||||
|
||||
typedef NCollection_Sequence<Hatch_Parameter> Hatch_SequenceOfParameter;
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user