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

0024748: Remove unused instantiations of collection classes

Removed:
- packages PColPGeom, PColPGeom2d
- in Geom package: classes SequenceOfBoundedSurface, (H)SequenceOfSurface
- in TColGeom package: classes Array1OfBoundedCurve, (H)Array1OfBoundedSurface, HArray1OfBoundedCurve, (H)Array2OfBoundedSurface, (H)Array2OfBSplineSurface, HArray2OfBezierSurface, (H)SequenceOfBoundedSurface, HSequenceOfSurface
- in TColGeom2d package: classes (H)Array1OfGeometry, (H)Array1OfBoundedCurve, HSequenceOfGeometry
This commit is contained in:
abv
2014-03-27 16:36:03 +04:00
committed by apn
parent a104bb8fe2
commit bbd47d8f35
32 changed files with 27 additions and 208 deletions

View File

@@ -28,23 +28,16 @@ is
class Array1OfCurve
instantiates Array1 from TCollection (Curve from Geom);
class Array1OfBoundedCurve
instantiates Array1 from TCollection (BoundedCurve from Geom);
class Array1OfBezierCurve
instantiates Array1 from TCollection (BezierCurve from Geom);
class Array1OfBSplineCurve
instantiates Array1 from TCollection (BSplineCurve from Geom);
class Array1OfSurface
instantiates Array1 from TCollection (Surface from Geom);
class Array1OfBoundedSurface
instantiates Array1 from TCollection (BoundedSurface from Geom);
class HArray1OfCurve
instantiates HArray1 from TCollection (Curve from Geom,
Array1OfCurve from TColGeom);
class HArray1OfBoundedCurve
instantiates HArray1 from TCollection (BoundedCurve from Geom,
Array1OfBoundedCurve from TColGeom);
class HArray1OfBezierCurve
instantiates HArray1 from TCollection (BezierCurve from Geom,
Array1OfBezierCurve from TColGeom);
@@ -54,33 +47,15 @@ is
class HArray1OfSurface
instantiates HArray1 from TCollection (Surface from Geom,
Array1OfSurface from TColGeom);
class HArray1OfBoundedSurface
instantiates HArray1 from TCollection (BoundedSurface from Geom,
Array1OfBoundedSurface from TColGeom);
class Array2OfSurface
instantiates Array2 from TCollection (Surface from Geom);
class Array2OfBoundedSurface
instantiates Array2 from TCollection (BoundedSurface from Geom);
class Array2OfBezierSurface
instantiates Array2 from TCollection (BezierSurface from Geom);
class Array2OfBSplineSurface
instantiates Array2 from TCollection (BSplineSurface from Geom);
class HArray2OfSurface
instantiates HArray2 from TCollection (Surface from Geom,
Array2OfSurface from TColGeom);
class HArray2OfBoundedSurface
instantiates HArray2 from TCollection (BoundedSurface from Geom,
Array2OfBoundedSurface from TColGeom);
class HArray2OfBezierSurface
instantiates HArray2 from TCollection (BezierSurface from Geom,
Array2OfBezierSurface from TColGeom);
class HArray2OfBSplineSurface
instantiates HArray2 from TCollection (BSplineSurface from Geom,
Array2OfBSplineSurface from TColGeom);
class SequenceOfCurve
instantiates Sequence from TCollection (Curve from Geom);
@@ -88,8 +63,6 @@ is
instantiates Sequence from TCollection (BoundedCurve from Geom);
class SequenceOfSurface
instantiates Sequence from TCollection (Surface from Geom);
class SequenceOfBoundedSurface
instantiates Sequence from TCollection (BoundedSurface from Geom);
class HSequenceOfCurve
instantiates HSequence from TCollection (Curve from Geom,
@@ -97,12 +70,5 @@ is
class HSequenceOfBoundedCurve
instantiates HSequence from TCollection (BoundedCurve from Geom,
SequenceOfBoundedCurve from TColGeom);
class HSequenceOfSurface
instantiates HSequence from TCollection (Surface from Geom,
SequenceOfSurface from TColGeom);
class HSequenceOfBoundedSurface
instantiates HSequence from TCollection (BoundedSurface from Geom,
SequenceOfBoundedSurface from TColGeom);
end TColGeom;