diff --git a/src/AIS/AIS.cdl b/src/AIS/AIS.cdl index 9d14a7482e..025f604f43 100644 --- a/src/AIS/AIS.cdl +++ b/src/AIS/AIS.cdl @@ -334,9 +334,9 @@ is class LocalContext; - private class LocalStatus; + class LocalStatus; - private class GlobalStatus; + class GlobalStatus; deferred class InteractiveObject; diff --git a/src/AIS/AIS_GlobalStatus.cdl b/src/AIS/AIS_GlobalStatus.cdl index c36e6b351c..d4c6e7ece4 100644 --- a/src/AIS/AIS_GlobalStatus.cdl +++ b/src/AIS/AIS_GlobalStatus.cdl @@ -14,7 +14,7 @@ -- Alternatively, this file may be used under the terms of Open CASCADE -- commercial license or contractual agreement. -private class GlobalStatus from AIS inherits TShared from MMgt +class GlobalStatus from AIS inherits TShared from MMgt ---Purpose: Stores information about objects in graphic context: -- - Status Of Display : in the main viewer diff --git a/src/AIS/AIS_LocalContext.cdl b/src/AIS/AIS_LocalContext.cdl index 5a9b10424f..6462590514 100644 --- a/src/AIS/AIS_LocalContext.cdl +++ b/src/AIS/AIS_LocalContext.cdl @@ -476,10 +476,10 @@ is ---Category: INTERNAL METHODS; - Status(me) returns AsciiString from TCollection is private; + Status(me) returns AsciiString from TCollection; Status(me;anObject : InteractiveObject from AIS) - returns any LocalStatus from AIS is private; + returns any LocalStatus from AIS; ---C++: return const& @@ -593,10 +593,6 @@ fields -- This variable is used by following functions: -- InitDetected(), MoreDetected(), NextDetected(), DetectedCurrentShape(), DetectedCurrentObject(). -friends - - KeepTemporary from InteractiveContext from AIS(me:mutable;anIObj:InteractiveObject from AIS;WhichMode : Integer from Standard = -1) - end LocalContext; diff --git a/src/AIS/AIS_LocalStatus.cdl b/src/AIS/AIS_LocalStatus.cdl index 41c1d61fa1..a7823b81b2 100644 --- a/src/AIS/AIS_LocalStatus.cdl +++ b/src/AIS/AIS_LocalStatus.cdl @@ -14,7 +14,7 @@ -- Alternatively, this file may be used under the terms of Open CASCADE -- commercial license or contractual agreement. -private class LocalStatus from AIS inherits TShared from MMgt +class LocalStatus from AIS inherits TShared from MMgt ---Purpose: Stored Info about temporary objects. uses diff --git a/src/AdvApp2Var/AdvApp2Var.cdl b/src/AdvApp2Var/AdvApp2Var.cdl index b4efe20e85..d8bc11f561 100644 --- a/src/AdvApp2Var/AdvApp2Var.cdl +++ b/src/AdvApp2Var/AdvApp2Var.cdl @@ -40,7 +40,6 @@ uses TColStd, TColgp, TColGeom, - TCollection, AdvApprox, Standard diff --git a/src/AdvApprox/AdvApprox.cdl b/src/AdvApprox/AdvApprox.cdl index 9d759bb43d..5cd4781735 100644 --- a/src/AdvApprox/AdvApprox.cdl +++ b/src/AdvApprox/AdvApprox.cdl @@ -26,8 +26,6 @@ uses gp, GeomAbs, TColStd, TColgp, - TCollection, - Standard, StdFail, PLib diff --git a/src/BOPAlgo/BOPAlgo_BOP.cdl b/src/BOPAlgo/BOPAlgo_BOP.cdl index 71404a83ff..97646d045d 100644 --- a/src/BOPAlgo/BOPAlgo_BOP.cdl +++ b/src/BOPAlgo/BOPAlgo_BOP.cdl @@ -51,10 +51,6 @@ is ---Purpose: Adds Tool argument of the operation is virtual; - SetTools (me:out; - theShapes: ListOfShape from TopTools) - is virtual; - SetTools (me:out; theShapes: ListOfShape from BOPCol) is virtual; diff --git a/src/BOPAlgo/BOPAlgo_BOP.cxx b/src/BOPAlgo/BOPAlgo_BOP.cxx index ec88eab219..53f9c41a4e 100644 --- a/src/BOPAlgo/BOPAlgo_BOP.cxx +++ b/src/BOPAlgo/BOPAlgo_BOP.cxx @@ -133,21 +133,6 @@ void BOPAlgo_BOP::AddTool(const TopoDS_Shape& theShape) //function : SetTools //purpose : //======================================================================= -void BOPAlgo_BOP::SetTools(const TopTools_ListOfShape& theShapes) -{ - TopTools_ListIteratorOfListOfShape aIt; - // - myTools.Clear(); - aIt.Initialize(theShapes); - for (; aIt.More(); aIt.Next()) { - const TopoDS_Shape& aS = aIt.Value(); - AddTool(aS); - } -} -//======================================================================= -//function : SetTools -//purpose : -//======================================================================= void BOPAlgo_BOP::SetTools(const BOPCol_ListOfShape& theShapes) { BOPCol_ListIteratorOfListOfShape aIt; diff --git a/src/BOPAlgo/BOPAlgo_Builder.cdl b/src/BOPAlgo/BOPAlgo_Builder.cdl index 4eb2798688..5f7d974ae7 100644 --- a/src/BOPAlgo/BOPAlgo_Builder.cdl +++ b/src/BOPAlgo/BOPAlgo_Builder.cdl @@ -62,9 +62,6 @@ is theShape: Shape from TopoDS) is virtual; - SetArguments(me:out; - theLS:ListOfShape from TopTools); - SetArguments (me:out; theLS: ListOfShape from BOPCol) is virtual; diff --git a/src/BOPAlgo/BOPAlgo_Builder.cxx b/src/BOPAlgo/BOPAlgo_Builder.cxx index 8e7bb8f66c..6a979d789f 100644 --- a/src/BOPAlgo/BOPAlgo_Builder.cxx +++ b/src/BOPAlgo/BOPAlgo_Builder.cxx @@ -107,22 +107,6 @@ void BOPAlgo_Builder::AddArgument(const TopoDS_Shape& theShape) //function : SetArguments //purpose : //======================================================================= -void BOPAlgo_Builder::SetArguments(const TopTools_ListOfShape& theShapes) -{ - TopTools_ListIteratorOfListOfShape aIt; - // - myArguments.Clear(); - // - aIt.Initialize(theShapes); - for (; aIt.More(); aIt.Next()) { - const TopoDS_Shape& aS = aIt.Value(); - AddArgument(aS); - } -} -//======================================================================= -//function : SetArguments -//purpose : -//======================================================================= void BOPAlgo_Builder::SetArguments(const BOPCol_ListOfShape& theShapes) { BOPCol_ListIteratorOfListOfShape aIt; diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.cdl b/src/BOPAlgo/BOPAlgo_PaveFiller.cdl index 237f49d1fe..7b40eee7a0 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.cdl +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.cdl @@ -86,9 +86,6 @@ is SetArguments(me:out; theLS:ListOfShape from BOPCol); - SetArguments(me:out; - theLS:ListOfShape from TopTools); - Arguments(me) returns ListOfShape from BOPCol; ---C++: return const & diff --git a/src/BOPAlgo/BOPAlgo_PaveFiller.cxx b/src/BOPAlgo/BOPAlgo_PaveFiller.cxx index b5fe4c6110..94e1788845 100644 --- a/src/BOPAlgo/BOPAlgo_PaveFiller.cxx +++ b/src/BOPAlgo/BOPAlgo_PaveFiller.cxx @@ -113,21 +113,6 @@ void BOPAlgo_PaveFiller::SetSectionAttribute //function : SetArguments //purpose : //======================================================================= -void BOPAlgo_PaveFiller::SetArguments(const TopTools_ListOfShape& theLS) -{ - TopTools_ListIteratorOfListOfShape aItLS; - // - myArguments.Clear(); - aItLS.Initialize(theLS); - for (; aItLS.More(); aItLS.Next()) { - const TopoDS_Shape& aS=aItLS.Value(); - myArguments.Append(aS); - } -} -//======================================================================= -//function : SetArguments -//purpose : -//======================================================================= void BOPAlgo_PaveFiller::SetArguments(const BOPCol_ListOfShape& theLS) { myArguments=theLS; diff --git a/src/BRepAlgo/BRepAlgo_DSAccess.cxx b/src/BRepAlgo/BRepAlgo_DSAccess.cxx index 63de9d3d72..cd41cda7df 100644 --- a/src/BRepAlgo/BRepAlgo_DSAccess.cxx +++ b/src/BRepAlgo/BRepAlgo_DSAccess.cxx @@ -455,7 +455,7 @@ const TopTools_ListOfShape& BRepAlgo_DSAccess::SectionVertex Standard_Integer goodIndex = 0; TopOpeBRepDS_Kind goodKind; for(;II.More();II.Next()) { - Handle(TopOpeBRepDS_Interference)& I = II.Value(); + const Handle(TopOpeBRepDS_Interference)& I = II.Value(); const TopOpeBRepDS_Transition& T = I->Transition(); if((T.ONAfter() == TopAbs_FACE) && (T.IndexAfter() == iF)) { diff --git a/src/BRepAlgo/BRepAlgo_Loop.cxx b/src/BRepAlgo/BRepAlgo_Loop.cxx index 521758b395..1d3ca3d794 100644 --- a/src/BRepAlgo/BRepAlgo_Loop.cxx +++ b/src/BRepAlgo/BRepAlgo_Loop.cxx @@ -559,8 +559,7 @@ void BRepAlgo_Loop::Perform() { const TopoDS_Edge& anEdge = TopoDS::Edge(itl.Value()); TopTools_ListOfShape LCE; - const TopTools_ListOfShape* pVertices = - static_cast(myVerOnEdges.Find1(anEdge)); + const TopTools_ListOfShape* pVertices = myVerOnEdges.Seek (anEdge); if (pVertices) { CutEdge (anEdge, *pVertices, LCE); @@ -575,8 +574,7 @@ void BRepAlgo_Loop::Perform() // add cut edges. for (itl.Initialize(myEdges); itl.More(); itl.Next()) { - const TopTools_ListOfShape* pLCE = - static_cast(myCutEdges.Find1(itl.Value())); + const TopTools_ListOfShape* pLCE = myCutEdges.Seek (itl.Value()); if (pLCE) { for (itl1.Initialize(*pLCE); itl1.More(); itl1.Next()) { diff --git a/src/BRepExtrema/BRepExtrema_DistShapeShape.hxx b/src/BRepExtrema/BRepExtrema_DistShapeShape.hxx index 8d5ff062ee..78a8322fc5 100644 --- a/src/BRepExtrema/BRepExtrema_DistShapeShape.hxx +++ b/src/BRepExtrema/BRepExtrema_DistShapeShape.hxx @@ -25,10 +25,7 @@ #include #include #include - -class TopoDS_Shape; -class TopTools_IndexedMapOfShape; - +#include //! This class provides tools to compute minimum distance
//! between two Shapes (Compound,CompSolid, Solid, Shell, Face, Wire, Edge, Vertex).
diff --git a/src/BRepLib/BRepLib_FuseEdges.cxx b/src/BRepLib/BRepLib_FuseEdges.cxx index d77db1fc07..00eb929949 100644 --- a/src/BRepLib/BRepLib_FuseEdges.cxx +++ b/src/BRepLib/BRepLib_FuseEdges.cxx @@ -443,7 +443,7 @@ void BRepLib_FuseEdges::BuildListResultEdges() const Standard_Integer& iLst = itLstEdg.Key(); const TopTools_ListOfShape& LmapEdg = myMapLstEdg.Find(iLst); - TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); + TopoDS_Edge OldEdge = TopoDS::Edge(LmapEdg.First()); // the first edge of the list will be replaced by the result fusion edge if (OldEdge.Orientation()==TopAbs_REVERSED) { @@ -575,8 +575,7 @@ void BRepLib_FuseEdges::Perform() TopTools_ListIteratorOfListOfShape itEdg; EdgeToSubs.Clear(); - TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); - + TopoDS_Edge OldEdge = TopoDS::Edge(LmapEdg.First()); EdgeToSubs.Append(myMapEdg(iLst)); Bsub.Substitute(OldEdge,EdgeToSubs); diff --git a/src/BRepMesh/BRepMesh_Delaun.hxx b/src/BRepMesh/BRepMesh_Delaun.hxx index b3f7765c22..d2bc70ce1e 100755 --- a/src/BRepMesh/BRepMesh_Delaun.hxx +++ b/src/BRepMesh/BRepMesh_Delaun.hxx @@ -26,10 +26,12 @@ #include #include #include +#include +#include +#include class Bnd_B2d; class Bnd_Box2d; -class BRepMesh_Array1OfVertexOfDelaun; class BRepMesh_Vertex; //! Compute the Delaunay's triangulation with the algorithm of Watson. diff --git a/src/BRepMesh/BRepMesh_DiscretFactory.hxx b/src/BRepMesh/BRepMesh_DiscretFactory.hxx index 57ddcec1e6..dc47c791b2 100644 --- a/src/BRepMesh/BRepMesh_DiscretFactory.hxx +++ b/src/BRepMesh/BRepMesh_DiscretFactory.hxx @@ -24,9 +24,6 @@ #include #include -class TColStd_MapOfAsciiString; -class TCollection_AsciiString; -class BRepMesh_DiscretRoot; class TopoDS_Shape; //! This class intended to setup / retrieve default triangulation algorithm.
diff --git a/src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx b/src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx index 1a250db71f..d1699f44bb 100644 --- a/src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx +++ b/src/BRepMesh/BRepMesh_EdgeParameterProvider.hxx @@ -19,7 +19,7 @@ #include #include #include -#include +#include class gp_Pnt; class TopoDS_Edge; diff --git a/src/BRepMesh/BRepMesh_EdgeTessellator.hxx b/src/BRepMesh/BRepMesh_EdgeTessellator.hxx index dcf595d043..7ab0d492bc 100644 --- a/src/BRepMesh/BRepMesh_EdgeTessellator.hxx +++ b/src/BRepMesh/BRepMesh_EdgeTessellator.hxx @@ -26,12 +26,12 @@ #include #include #include +#include class Geom_Surface; class Geom2d_Curve; class TopoDS_Edge; class BRepAdaptor_HSurface; -class TopTools_IndexedDataMapOfShapeListOfShape; //! Auxiliary class implements functionality producing tessellated //! representation of an edge based on edge geometry. diff --git a/src/BRepMesh/BRepMesh_FastDiscretFace.hxx b/src/BRepMesh/BRepMesh_FastDiscretFace.hxx index 1badfec32a..bacf6ac15b 100644 --- a/src/BRepMesh/BRepMesh_FastDiscretFace.hxx +++ b/src/BRepMesh/BRepMesh_FastDiscretFace.hxx @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -32,7 +33,6 @@ class BRepMesh_DataStructureOfDelaun; class BRepMesh_FaceAttribute; class TopoDS_Face; -class TopTools_DataMapOfShapeReal; class TopoDS_Vertex; class BRepAdaptor_HSurface; class TopoDS_Edge; diff --git a/src/BRepMesh/BRepMesh_WireChecker.hxx b/src/BRepMesh/BRepMesh_WireChecker.hxx index 2f77330833..b0a0adae4c 100644 --- a/src/BRepMesh/BRepMesh_WireChecker.hxx +++ b/src/BRepMesh/BRepMesh_WireChecker.hxx @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -29,8 +30,6 @@ #include -class BRepMesh_DataMapOfShapePairOfPolygon; -class TColStd_IndexedMapOfInteger; //! Auxilary class intended to check correctness of discretized face. //! In particular, checks boundaries of discretized face for self diff --git a/src/BRepTools/BRepTools_ReShape.cxx b/src/BRepTools/BRepTools_ReShape.cxx index 3ca3db4e1c..8bc3ce3deb 100644 --- a/src/BRepTools/BRepTools_ReShape.cxx +++ b/src/BRepTools/BRepTools_ReShape.cxx @@ -38,26 +38,14 @@ #include -static void CopyRanges (const TopoDS_Edge& toedge, - const TopoDS_Edge& fromedge, - const Standard_Real alpha, - const Standard_Real beta) +static void CopyRanges (const TopoDS_Shape& toedge, const TopoDS_Shape& fromedge, + const Standard_Real alpha, const Standard_Real beta) { -/* BRep_Builder B; - for (BRep_ListIteratorOfListOfCurveRepresentation itcr - ((*((Handle(BRep_TEdge)*)&fromedge.TShape()))->ChangeCurves()); itcr.More(); itcr.Next()) { - Handle(BRep_GCurve) GC = Handle(BRep_GCurve)::DownCast(itcr.Value()); - if ( GC.IsNull() ) continue; - Standard_Real first, last; - GC->Range ( first, last ); - if ( GC->IsCurve3D() ) - B.Range ( toedge, first, last ); - else if ( GC->IsCurveOnSurface() ) - B.Range ( toedge, GC->Surface(), fromedge.Location().Multiplied (GC->Location()), first, last); - } -*/ - for (BRep_ListIteratorOfListOfCurveRepresentation fromitcr - ((*((Handle(BRep_TEdge)*)&fromedge.TShape()))->ChangeCurves()); fromitcr.More(); fromitcr.Next()) { + Handle(BRep_TEdge) aTEdgeFrom = Handle(BRep_TEdge)::DownCast(fromedge.TShape()); + Handle(BRep_TEdge) aTEdgeTo = Handle(BRep_TEdge)::DownCast(toedge.TShape()); + BRep_ListOfCurveRepresentation& tolist = aTEdgeTo->ChangeCurves(); + BRep_ListIteratorOfListOfCurveRepresentation fromitcr (aTEdgeFrom->ChangeCurves()); + for (; fromitcr.More(); fromitcr.Next()) { Handle(BRep_GCurve) fromGC = Handle(BRep_GCurve)::DownCast(fromitcr.Value()); if ( fromGC.IsNull() ) continue; Standard_Boolean isC3d = fromGC->IsCurve3D(); @@ -75,7 +63,6 @@ static void CopyRanges (const TopoDS_Edge& toedge, L = fromGC->Location(); } - BRep_ListOfCurveRepresentation& tolist = (*((Handle(BRep_TEdge)*)&toedge.TShape()))->ChangeCurves(); Handle(BRep_GCurve) toGC; for (BRep_ListIteratorOfListOfCurveRepresentation toitcr (tolist); toitcr.More(); toitcr.Next()) { toGC = Handle(BRep_GCurve)::DownCast(toitcr.Value()); @@ -536,8 +523,7 @@ TopoDS_Shape BRepTools_ReShape::Apply (const TopoDS_Shape& shape, // restore Range on edge broken by EmptyCopied() if ( st == TopAbs_EDGE ) { - //BRepTools_Edge sbe; - CopyRanges ( TopoDS::Edge ( result ), TopoDS::Edge ( shape ),0,1 ); + CopyRanges (result, shape, 0, 1); } else if (st == TopAbs_FACE) { TopoDS_Face face = TopoDS::Face ( shape ); diff --git a/src/BSplCLib/BSplCLib_Cache.hxx b/src/BSplCLib/BSplCLib_Cache.hxx index ab64d464f5..e74c8dbb90 100644 --- a/src/BSplCLib/BSplCLib_Cache.hxx +++ b/src/BSplCLib/BSplCLib_Cache.hxx @@ -27,10 +27,11 @@ #include #include -class Handle(BSplCLib_Cache); -class TColStd_Array1OfReal; -class TColgp_Array1OfPnt; -class TColgp_Array1OfPnt2d; +#include +#include +#include +#include +#include #ifndef NOWEIGHTS_CURVE #define NOWEIGHTS_CURVE (*((TColStd_Array1OfReal*) NULL)) diff --git a/src/BSplSLib/BSplSLib_Cache.hxx b/src/BSplSLib/BSplSLib_Cache.hxx index dfb9d92955..59e677bb2a 100644 --- a/src/BSplSLib/BSplSLib_Cache.hxx +++ b/src/BSplSLib/BSplSLib_Cache.hxx @@ -19,17 +19,15 @@ #include #include -#include -#include - #include #include -class Handle(BSplSLib_Cache); -class TColgp_Array2OfPnt; -class TColStd_Array1OfInteger; -class TColStd_Array1OfReal; -class TColStd_Array2OfReal; +#include +#include +#include +#include +#include +#include #ifndef NOWEIGHTS_SURF #define NOWEIGHTS_SURF (*((TColStd_Array2OfReal*) NULL)) diff --git a/src/Bisector/Bisector_BisecPC.cxx b/src/Bisector/Bisector_BisecPC.cxx index 011b955f5a..d98d2b34ec 100644 --- a/src/Bisector/Bisector_BisecPC.cxx +++ b/src/Bisector/Bisector_BisecPC.cxx @@ -634,7 +634,7 @@ void Bisector_BisecPC::CuspFilter() void Bisector_BisecPC::ComputeIntervals () { Standard_Real U1 =0.,U2 =0.,UProj =0.; - Standard_Real UStart,UEnd; + Standard_Real UStart = 0., UEnd = 0.; Standard_Real Dist1,Dist2,DistProj; isEmpty = Standard_False; shiftParameter = 0.; diff --git a/src/CDM/CDM_MetaDataLookUpTable.hxx b/src/CDM/CDM_MetaDataLookUpTable.hxx index 8b054d420f..a04d5d7974 100644 --- a/src/CDM/CDM_MetaDataLookUpTable.hxx +++ b/src/CDM/CDM_MetaDataLookUpTable.hxx @@ -17,11 +17,11 @@ #ifndef CDM_MetaDataLookUpTable_HeaderFile #define CDM_MetaDataLookUpTable_HeaderFile -#include -#include #include #include +class Handle(CDM_MetaData); + typedef NCollection_DataMap CDM_MetaDataLookUpTable; typedef NCollection_DataMap::Iterator CDM_DataMapIteratorOfMetaDataLookUpTable; diff --git a/src/DDF/DDF_IOStream.hxx b/src/DDF/DDF_IOStream.hxx index 38fc0a1b9d..8fe47f2da8 100644 --- a/src/DDF/DDF_IOStream.hxx +++ b/src/DDF/DDF_IOStream.hxx @@ -36,20 +36,9 @@ class Storage_StreamFormatError; class Storage_StreamWriteError; class Storage_StreamExtCharParityError; -class TColStd_SequenceOfExtendedString; +#include -#ifndef Standard_EXPORT -#ifdef WNT -#define Standard_EXPORT __declspec(dllexport) -#else -#define Standard_EXPORT -#endif -#endif -#ifdef WNT -#pragma warning (disable : 4275) -#endif - -class Standard_EXPORT DDF_IOStream : public Storage_BaseDriver { +class DDF_IOStream : public Storage_BaseDriver { public: diff --git a/src/Expr/Expr_Array1OfNamedUnknown.hxx b/src/Expr/Expr_Array1OfNamedUnknown.hxx index 23746ed499..2bb95b1feb 100644 --- a/src/Expr/Expr_Array1OfNamedUnknown.hxx +++ b/src/Expr/Expr_Array1OfNamedUnknown.hxx @@ -17,7 +17,7 @@ #ifndef Expr_Array1OfNamedUnknown_HeaderFile #define Expr_Array1OfNamedUnknown_HeaderFile -#include +#include #include typedef NCollection_Array1 Expr_Array1OfNamedUnknown; diff --git a/src/MeshTest/MeshTest_DrawableMesh.hxx b/src/MeshTest/MeshTest_DrawableMesh.hxx index ba9f1740a8..9d84918957 100644 --- a/src/MeshTest/MeshTest_DrawableMesh.hxx +++ b/src/MeshTest/MeshTest_DrawableMesh.hxx @@ -19,14 +19,11 @@ #include #include #include -#include #include #include class TopoDS_Shape; -class TColStd_SequenceOfInteger; class Draw_Display; -class Draw_Drawable3D; //! A drawable mesh. //! Provides a mesh object inherited from Drawable3d to draw a triangulation. diff --git a/src/MeshVS/MeshVS_SensitiveFace.hxx b/src/MeshVS/MeshVS_SensitiveFace.hxx index ff4f6c7a99..07da34551d 100644 --- a/src/MeshVS/MeshVS_SensitiveFace.hxx +++ b/src/MeshVS/MeshVS_SensitiveFace.hxx @@ -25,8 +25,6 @@ #include class SelectBasics_EntityOwner; -class TColgp_Array1OfPnt; - //! This class provides custom sensitive face, which will be selected if it center is in rectangle. class MeshVS_SensitiveFace : public Select3D_SensitiveFace diff --git a/src/MeshVS/MeshVS_SensitivePolyhedron.hxx b/src/MeshVS/MeshVS_SensitivePolyhedron.hxx index 287f031bf4..0adaa8cc05 100644 --- a/src/MeshVS/MeshVS_SensitivePolyhedron.hxx +++ b/src/MeshVS/MeshVS_SensitivePolyhedron.hxx @@ -19,9 +19,9 @@ #include #include -#include -#include -#include +#include +#include +#include #include #include #include @@ -29,16 +29,10 @@ #include #include -class TColgp_HArray1OfPnt; -class TColgp_HArray1OfPnt2d; -class MeshVS_HArray1OfSequenceOfInteger; class SelectBasics_EntityOwner; -class TColgp_Array1OfPnt; class Select3D_SensitiveEntity; class TopLoc_Location; -class TColgp_Array1OfPnt2d; class Bnd_Box2d; -class TColStd_SequenceOfInteger; class gp_Lin; class SelectBasics_ListOfBox2d; diff --git a/src/MoniTool/MoniTool_DataMapOfTimer.hxx b/src/MoniTool/MoniTool_DataMapOfTimer.hxx index 0d008f6ce0..f00aaa4180 100644 --- a/src/MoniTool/MoniTool_DataMapOfTimer.hxx +++ b/src/MoniTool/MoniTool_DataMapOfTimer.hxx @@ -18,10 +18,10 @@ #define MoniTool_DataMapOfTimer_HeaderFile #include -#include #include #include +class Handle(MoniTool_Timer); typedef NCollection_DataMap MoniTool_DataMapOfTimer; typedef NCollection_DataMap::Iterator MoniTool_DataMapIteratorOfDataMapOfTimer; diff --git a/src/OpenGl/OpenGl_GraphicDriver.hxx b/src/OpenGl/OpenGl_GraphicDriver.hxx index 1a4ba3214e..adb4cbc3d0 100644 --- a/src/OpenGl/OpenGl_GraphicDriver.hxx +++ b/src/OpenGl/OpenGl_GraphicDriver.hxx @@ -23,8 +23,8 @@ #include -#include -#include +#include +#include #include #include #include @@ -56,16 +56,16 @@ #include #include -class TColStd_Array1OfInteger; -class TColStd_Array1OfReal; -class TColStd_Array2OfReal; -class TColStd_HArray1OfByte; +#include +#include +#include +#include + class Graphic3d_Vector; class Quantity_Color; class Graphic3d_Vertex; class TCollection_ExtendedString; class Image_PixMap; -class TColStd_HArray1OfReal; class Handle(OpenGl_Workspace); class OpenGl_Element; class OpenGl_Structure; diff --git a/src/Prs3d/Prs3d_WFShape.hxx b/src/Prs3d/Prs3d_WFShape.hxx index 32d6b12023..67d4911b74 100755 --- a/src/Prs3d/Prs3d_WFShape.hxx +++ b/src/Prs3d/Prs3d_WFShape.hxx @@ -22,7 +22,6 @@ class Adaptor3d_Curve; class TopoDS_Edge; class TopoDS_Shape; -class TColgp_SequenceOfPnt; class Handle(BRepAdaptor_HSurface); class Handle(Prs3d_Drawer); diff --git a/src/QADraw/QADraw.cxx b/src/QADraw/QADraw.cxx index 5020a2be95..d3385c8389 100644 --- a/src/QADraw/QADraw.cxx +++ b/src/QADraw/QADraw.cxx @@ -40,19 +40,16 @@ #include //======================================================================= -#if ! defined(WNT) -extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS(); -extern Handle(AIS_InteractiveContext)& TheAISContext(); -#else -Standard_EXPORT ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS(); -Standard_EXPORT Handle(AIS_InteractiveContext)& TheAISContext(); -#endif + #include #include #include #include #include +Standard_EXPORT ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS(); +Standard_EXPORT Handle(AIS_InteractiveContext)& TheAISContext(); + //============================================================================== // function : VTrihedronOrigins // author : ota diff --git a/src/QANCollection/FILES b/src/QANCollection/FILES index 4ec0f8b5e4..2a05c996f4 100755 --- a/src/QANCollection/FILES +++ b/src/QANCollection/FILES @@ -1,7 +1,6 @@ FILES QANCollection.cdl QANCollection.cxx -QANCollection_Simple.cxx QANCollection_Test.cxx QANCollection_Perf.cxx QANCollection_Alloc.cxx diff --git a/src/QANCollection/QANCollection.cdl b/src/QANCollection/QANCollection.cdl index 4f1a70a3a6..a1dc7231a6 100644 --- a/src/QANCollection/QANCollection.cdl +++ b/src/QANCollection/QANCollection.cdl @@ -31,7 +31,6 @@ is imported DoubleMapIteratorOfDoubleMapOfRealInteger; Commands(DI : in out Interpretor from Draw); - CommandsSimple(DI : in out Interpretor from Draw); CommandsTest(DI : in out Interpretor from Draw); CommandsPerf(DI : in out Interpretor from Draw); CommandsAlloc(DI : in out Interpretor from Draw); diff --git a/src/QANCollection/QANCollection.cxx b/src/QANCollection/QANCollection.cxx index 11eb65dd91..9424e79573 100644 --- a/src/QANCollection/QANCollection.cxx +++ b/src/QANCollection/QANCollection.cxx @@ -20,7 +20,6 @@ void QANCollection::Commands (Draw_Interpretor& theCommands) { - QANCollection::CommandsSimple (theCommands); QANCollection::CommandsTest (theCommands); QANCollection::CommandsPerf (theCommands); QANCollection::CommandsAlloc (theCommands); diff --git a/src/QANCollection/QANCollection_Simple.cxx b/src/QANCollection/QANCollection_Simple.cxx deleted file mode 100644 index d168a7633f..0000000000 --- a/src/QANCollection/QANCollection_Simple.cxx +++ /dev/null @@ -1,225 +0,0 @@ -// Created on: 2004-03-05 -// Created by: Mikhail KUZMITCHEV -// Copyright (c) 2004-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. - -#include -#include - -#include - -#include -#include - -#include -#include -#include - -typedef NCollection_Array1 MyArray1; -typedef NCollection_Sequence MySequence; - -const Standard_Integer REPEAT = 100; - -static void printAllMeters (Draw_Interpretor& theDI) -{ - char buffer[25600]; - perf_sprint_all_meters (buffer, 25600 - 1, 1); - theDI << buffer; -} - -static void createArray (TColgp_Array1OfPnt& anArrPnt) -{ - OSD_PerfMeter aPerfMeter("Create array"); - - for (Standard_Integer j = 0; j < 2*REPEAT; j++) { - PERF_START_METER("Create array") - for (Standard_Integer i = anArrPnt.Lower(); i <= anArrPnt.Upper(); i++) - anArrPnt(i).SetCoord ((double)i, (double)(i+1), (double)(i+2)); - PERF_STOP_METER("Create array") - } -} - -static void createSequence (TColgp_SequenceOfPnt& aSeq) -{ - for (Standard_Integer j = 0; j < REPEAT; j++) { - PERF_START_METER("Clear sequence") - aSeq.Clear(); - PERF_STOP_METER("Clear sequence") - PERF_START_METER("Create sequence") - for (Standard_Integer i = 0; i < 100000; i++) - aSeq.Append (gp_Pnt((double)i, (double)(i+1), (double)(i+2))); - PERF_STOP_METER("Create sequence") - } -} - -static void createSequence (MySequence& aSeq) -{ - for (Standard_Integer j = 0; j < REPEAT; j++) { - PERF_START_METER("Clear sequence") - aSeq.Clear(); - PERF_STOP_METER("Clear sequence") - PERF_START_METER("Create sequence") - for (Standard_Integer i = 0; i < 100000; i++) - aSeq.Append (gp_Pnt((double)i, (double)(i+1), (double)(i+2))); - PERF_STOP_METER("Create sequence") - } -} - -static void assignSequence (TColgp_SequenceOfPnt& aDest, - const TColgp_SequenceOfPnt& aSrc) -{ - for (Standard_Integer i = 0; i < REPEAT; i++) { - PERF_START_METER("Assign sequence to sequence") - aDest = aSrc; - PERF_STOP_METER("Assign sequence to sequence") - } -} - -static void assignSequence (MySequence& aDest, const MySequence& aSrc) -{ - for (Standard_Integer i = 0; i < REPEAT; i++) { - PERF_START_METER("Assign sequence to sequence") - aDest = aSrc; - PERF_STOP_METER("Assign sequence to sequence") - } -} - -static void createArray (MyArray1& anArrPnt) -{ - for (Standard_Integer j = 0; j < 2*REPEAT; j++) { - PERF_START_METER("Create array") - for (Standard_Integer i = anArrPnt.Lower(); i <= anArrPnt.Upper(); i++) - anArrPnt(i).SetCoord ((double)i, (double)(i+1), (double)(i+2)); - PERF_STOP_METER("Create array") - } -} - -static void assignArray (TColgp_Array1OfPnt& aDest, const TColgp_Array1OfPnt& aSrc) -{ - for (Standard_Integer i = 0; i < 2*REPEAT; i++) { - PERF_START_METER("Assign array to array") - aDest = aSrc; - PERF_STOP_METER("Assign array to array") - } -} - -template -void assignCollection (MyBaseCollPnt& aDest, - const MyBaseCollPnt& aSrc, - const char * MeterName) -{ - for (Standard_Integer i = 0; i < REPEAT; i++) { - perf_start_meter (MeterName); - aDest.Assign(aSrc); - perf_stop_meter (MeterName); - } -} - -static void assignArray (MyArray1& aDest, const MyArray1& aSrc) -{ - for (Standard_Integer i = 0; i < 2*REPEAT; i++) { - PERF_START_METER("Assign array to array") - aDest = aSrc; - PERF_STOP_METER("Assign array to array") - } -} - -static void checkArray (Draw_Interpretor& theDI, const Standard_Boolean isNewColl) -{ - if (isNewColl) { - MyArray1 anArrPnt (1, 100000), anArrPnt1 (1, 100000); - createArray (anArrPnt); - assignArray (anArrPnt1, anArrPnt); - assignCollection (anArrPnt1, anArrPnt, "Assign collect to array"); - } else { - TColgp_Array1OfPnt anArrPnt (1,100000), anArrPnt1 (1, 100000); - createArray (anArrPnt); - assignArray (anArrPnt1, anArrPnt); - } - printAllMeters (theDI); -} - -static void checkSequence (Draw_Interpretor& theDI, - const Standard_Boolean isNewColl, - const Standard_Boolean isIncr) -{ - if (isNewColl) { - Handle(NCollection_BaseAllocator) anAlloc[2]; - if (isIncr) { - anAlloc[0] = new NCollection_IncAllocator; - anAlloc[1] = new NCollection_IncAllocator; - } - MySequence aSeqPnt (anAlloc[0]), aSeqPnt1(anAlloc[1]); - createSequence (aSeqPnt); - assignSequence (aSeqPnt1, aSeqPnt); - assignCollection (aSeqPnt1, aSeqPnt, "Assign collect to sequence"); - } else { - TColgp_SequenceOfPnt aSeqPnt, aSeqPnt1; - createSequence (aSeqPnt); - assignSequence (aSeqPnt1, aSeqPnt); - } - printAllMeters (theDI); -} - -//======================================================================= -//function : QANColCheckArray1 -//purpose : -//======================================================================= -static Standard_Integer QANColCheckArray1(Draw_Interpretor& di, Standard_Integer argc, const char ** argv) -{ - if ( argc > 2) { - di << "Usage : " << argv[0] << " [-n]" << "\n"; - return 1; - } - - Standard_Boolean isNewColl = Standard_False; - if (argc > 1) { - if (strcmp (argv[1], "-n") == 0) isNewColl = Standard_True; - } - checkArray (di, isNewColl); - return 0; -} - -//======================================================================= -//function : QANColCheckSequence -//purpose : -//======================================================================= -static Standard_Integer QANColCheckSequence(Draw_Interpretor& di, Standard_Integer argc, const char ** argv) -{ - if ( argc > 2) { - di << "Usage : " << argv[0] << " [-n]/[-ni]/[-in]" << "\n"; - return 1; - } - - Standard_Boolean isNewColl = Standard_False, isIncr = Standard_False; - if (argc > 1) { - if (strcmp (argv[1], "-n") == 0) isNewColl = Standard_True; - if (strcmp (argv[1], "-ni") == 0 || strcmp (argv[1], "-in") == 0) - { - isNewColl = Standard_True; - isIncr = Standard_True; - } - } - checkSequence (di, isNewColl, isIncr); - return 0; -} - -void QANCollection::CommandsSimple(Draw_Interpretor& theCommands) { - const char *group = "QANCollection"; - - // from agvCollTest/src/AgvColEXE/TestEXE.cxx - theCommands.Add("QANColCheckArray1", "QANColCheckArray1 [-n]", __FILE__, QANColCheckArray1, group); - theCommands.Add("QANColCheckSequence", "QANColCheckSequence [-n]/[-ni]/[-in]", __FILE__, QANColCheckSequence, group); - - return; -} diff --git a/src/Select3D/Select3D_InteriorSensitivePointSet.hxx b/src/Select3D/Select3D_InteriorSensitivePointSet.hxx index f8b0575ad6..8742a5d757 100644 --- a/src/Select3D/Select3D_InteriorSensitivePointSet.hxx +++ b/src/Select3D/Select3D_InteriorSensitivePointSet.hxx @@ -19,17 +19,14 @@ #include #include -#include -#include +#include +#include #include #include class gp_Pnt; class SelectBasics_EntityOwner; -class TColgp_Array1OfPnt; -class TColgp_HArray1OfPnt; -class TColStd_HArray1OfInteger; typedef NCollection_Vector Select3D_VectorOfHPoly; diff --git a/src/Select3D/Select3D_SensitiveCircle.hxx b/src/Select3D/Select3D_SensitiveCircle.hxx index 6b109fa957..97ba0f724c 100644 --- a/src/Select3D/Select3D_SensitiveCircle.hxx +++ b/src/Select3D/Select3D_SensitiveCircle.hxx @@ -27,7 +27,7 @@ #include #include #include -#include +#include #include #include @@ -35,8 +35,6 @@ class Geom_Circle; class Standard_ConstructionError; class Standard_OutOfRange; class SelectBasics_EntityOwner; -class TColgp_HArray1OfPnt; -class TColgp_Array1OfPnt; class gp_Pnt; class TopLoc_Location; diff --git a/src/Select3D/Select3D_SensitiveCurve.hxx b/src/Select3D/Select3D_SensitiveCurve.hxx index 30d45075f3..866e7b8fe0 100644 --- a/src/Select3D/Select3D_SensitiveCurve.hxx +++ b/src/Select3D/Select3D_SensitiveCurve.hxx @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include #include #include @@ -35,8 +35,6 @@ class Geom_Curve; class Standard_ConstructionError; class Standard_OutOfRange; class SelectBasics_EntityOwner; -class TColgp_HArray1OfPnt; -class TColgp_Array1OfPnt; class Select3D_SensitiveEntity; class TopLoc_Location; diff --git a/src/Select3D/Select3D_SensitiveFace.hxx b/src/Select3D/Select3D_SensitiveFace.hxx index 0a7e6f8751..9aa6c277d3 100644 --- a/src/Select3D/Select3D_SensitiveFace.hxx +++ b/src/Select3D/Select3D_SensitiveFace.hxx @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include #include @@ -35,8 +35,6 @@ class Standard_ConstructionError; class Standard_OutOfRange; class SelectBasics_EntityOwner; -class TColgp_Array1OfPnt; -class TColgp_HArray1OfPnt; class TopLoc_Location; diff --git a/src/Select3D/Select3D_SensitivePoly.hxx b/src/Select3D/Select3D_SensitivePoly.hxx index ca2eb14b18..54db03cdb6 100644 --- a/src/Select3D/Select3D_SensitivePoly.hxx +++ b/src/Select3D/Select3D_SensitivePoly.hxx @@ -21,8 +21,7 @@ #include #include -#include -#include +#include #include #include @@ -34,8 +33,6 @@ class Standard_ConstructionError; class Standard_OutOfRange; class SelectBasics_EntityOwner; -class TColgp_Array1OfPnt; -class TColgp_HArray1OfPnt; //! Sensitive Entity to make a face selectable. //! In some cases this class can raise Standard_ConstructionError and diff --git a/src/Select3D/Select3D_SensitiveSegment.hxx b/src/Select3D/Select3D_SensitiveSegment.hxx index e610ef9132..48882a7777 100644 --- a/src/Select3D/Select3D_SensitiveSegment.hxx +++ b/src/Select3D/Select3D_SensitiveSegment.hxx @@ -32,8 +32,6 @@ class SelectBasics_EntityOwner; class gp_Pnt; class TopLoc_Location; -class TColgp_Array1OfPnt2d; - //! A framework to define sensitive zones along a segment //! One gives the 3D start and end point diff --git a/src/Select3D/Select3D_SensitiveTriangle.hxx b/src/Select3D/Select3D_SensitiveTriangle.hxx index 5d9fff11d7..2a63c1f052 100644 --- a/src/Select3D/Select3D_SensitiveTriangle.hxx +++ b/src/Select3D/Select3D_SensitiveTriangle.hxx @@ -32,7 +32,6 @@ class Standard_ConstructionError; class Standard_OutOfRange; class SelectBasics_EntityOwner; class gp_Pnt; -class TColgp_Array1OfPnt2d; class Select3D_SensitiveEntity; class TopLoc_Location; diff --git a/src/Select3D/Select3D_SensitiveTriangulation.hxx b/src/Select3D/Select3D_SensitiveTriangulation.hxx index 9bff3a146e..4b3b16410c 100644 --- a/src/Select3D/Select3D_SensitiveTriangulation.hxx +++ b/src/Select3D/Select3D_SensitiveTriangulation.hxx @@ -30,7 +30,7 @@ #include #include #include -#include +#include #include #include #include @@ -41,13 +41,11 @@ #include class Poly_Triangulation; -class TColStd_HArray1OfInteger; class SelectBasics_EntityOwner; class TopLoc_Location; class gp_Pnt; class Select3D_SensitiveEntity; class Handle(Select3D_SensitiveEntity); -class TColgp_Array1OfPnt2d; //! A framework to define selection of a sensitive entity made of a set of triangles. class Select3D_SensitiveTriangulation : public Select3D_SensitiveSet diff --git a/src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx b/src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx index df795b5e34..316714f42d 100644 --- a/src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx +++ b/src/SelectBasics/SelectBasics_SelectingVolumeManager.hxx @@ -22,7 +22,6 @@ class Bnd_Box; class gp_Pnt; -class TColgp_Array1OfPnt; //! This class provides an interface for selecting volume manager, //! which is responsible for all overlap detection methods and diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.hxx b/src/SelectMgr/SelectMgr_ViewerSelector.hxx index 89b8c03c94..93a8209210 100644 --- a/src/SelectMgr/SelectMgr_ViewerSelector.hxx +++ b/src/SelectMgr/SelectMgr_ViewerSelector.hxx @@ -26,7 +26,7 @@ #include #include #include -#include +#include #include #include @@ -41,12 +41,10 @@ #include #include -class TColStd_HArray1OfInteger; class SelectMgr_SelectionManager; class SelectMgr_Selection; class SelectMgr_SensitiveEntitySet; class SelectMgr_EntityOwner; -class TColStd_ListOfInteger; class TCollection_AsciiString; class SelectBasics_SensitiveEntity; class SelectMgr_SelectableObjectSet; diff --git a/src/ShapeFix/ShapeFix_FixSmallSolid.cxx b/src/ShapeFix/ShapeFix_FixSmallSolid.cxx index 70a82bcd42..cfa44f70c4 100644 --- a/src/ShapeFix/ShapeFix_FixSmallSolid.cxx +++ b/src/ShapeFix/ShapeFix_FixSmallSolid.cxx @@ -157,7 +157,7 @@ static void AddToMap (TopTools_DataMapOfShapeListOfShape& theMap, const TopoDS_Shape& theKey, const TopoDS_Shape& theItem) { - Standard_Address aListPtr = theMap.ChangeFind1 (theKey); + TopTools_ListOfShape* aListPtr = theMap.ChangeSeek (theKey); if (aListPtr == NULL) { TopTools_ListOfShape aList; @@ -165,7 +165,7 @@ static void AddToMap (TopTools_DataMapOfShapeListOfShape& theMap, theMap.Bind (theKey, aList); } else - ((TopTools_ListOfShape*)aListPtr)->Append (theItem); + aListPtr->Append (theItem); } //======================================================================= @@ -179,11 +179,11 @@ static void AddToMap (TopTools_DataMapOfShapeListOfShape& theMap, { if (theItems.IsEmpty()) return; - Standard_Address aListPtr = theMap.ChangeFind1 (theKey); + TopTools_ListOfShape* aListPtr = theMap.ChangeSeek (theKey); if (aListPtr == NULL) theMap.Bind (theKey, theItems); else - ((TopTools_ListOfShape*)aListPtr)->Append (theItems); + aListPtr->Append (theItems); } //======================================================================= @@ -247,17 +247,17 @@ static Standard_Boolean FindMostSharedShell ( if (aFace.ShapeType() != TopAbs_FACE) continue; // find an outer shell that shares the current face - Standard_Address anOuterShellPtr = theMapFacesToOuterShells.Find1 (aFace); + const TopoDS_Shape* anOuterShellPtr = theMapFacesToOuterShells.Seek (aFace); if (anOuterShellPtr == NULL) continue; - const TopoDS_Shape& anOuterShell = *(TopoDS_Shape*)anOuterShellPtr; + const TopoDS_Shape& anOuterShell = *anOuterShellPtr; // add the face area to the sum shared area for the outer shell Standard_Real anArea = ShapeArea (aFace); - Standard_Address aSharedAreaPtr = aSharedAreas.ChangeFind1 (anOuterShell); + Standard_Real* aSharedAreaPtr = aSharedAreas.ChangeSeek (anOuterShell); if (aSharedAreaPtr == NULL) aSharedAreas.Bind (anOuterShell, anArea); else - anArea = *(Standard_Real*)aSharedAreaPtr += anArea; + anArea = (*aSharedAreaPtr) += anArea; // if this outer shell currently has maximum shared area, // remember it and the current solid's shell @@ -328,10 +328,10 @@ static TopoDS_Shape MergeShells ( } // classify the face - Standard_Address anOuterShellPtr = theMapFacesToOuterShells.Find1 (aFace); + const TopoDS_Shape* anOuterShellPtr = theMapFacesToOuterShells.Seek (aFace); if (anOuterShellPtr != NULL) { - if (((TopoDS_Shape*)anOuterShellPtr)->IsSame (theBaseShell)) + if (anOuterShellPtr->IsSame (theBaseShell)) aRemoveFaces.Add (aFace); // face shared with the base shell else aBuilder.Add (aNewShell, aFace); // face shared with another outer shell @@ -478,7 +478,7 @@ TopoDS_Shape ShapeFix_FixSmallSolid::Merge ( TopTools_ListOfShape& aShellsToBeMerged = (TopTools_ListOfShape&)aShellIter.Value(); TopTools_ListOfShape* aShellsToBeAddedPtr = - (TopTools_ListOfShape*)aShellsToAdd.ChangeFind1 (aBaseShell); + aShellsToAdd.ChangeSeek (aBaseShell); // merge needed shells TopoDS_Shape aNewShell = MergeShells (aBaseShell, aShellsToBeMerged, diff --git a/src/StdPrs/StdPrs_ToolShadedShape.hxx b/src/StdPrs/StdPrs_ToolShadedShape.hxx index 44a9922510..650db6bd3c 100644 --- a/src/StdPrs/StdPrs_ToolShadedShape.hxx +++ b/src/StdPrs/StdPrs_ToolShadedShape.hxx @@ -18,13 +18,13 @@ #include #include #include +#include class TopoDS_Shape; class Poly_Triangulation; class TopoDS_Face; class TopLoc_Location; class Poly_Connect; -class TColgp_Array1OfDir; class StdPrs_ToolShadedShape { diff --git a/src/StdSelect/StdSelect_ViewerSelector3d.hxx b/src/StdSelect/StdSelect_ViewerSelector3d.hxx index ee74c21fde..5dbe23e670 100644 --- a/src/StdSelect/StdSelect_ViewerSelector3d.hxx +++ b/src/StdSelect/StdSelect_ViewerSelector3d.hxx @@ -33,7 +33,6 @@ class Graphic3d_Group; class Graphic3d_Structure; class V3d_View; -class TColgp_Array1OfPnt2d; class SelectMgr_EntityOwner; class SelectMgr_SelectableObjectSet; diff --git a/src/TDF/TDF_AttributeIndexedMap.hxx b/src/TDF/TDF_AttributeIndexedMap.hxx index 45c54f9b06..b6e99d9e01 100644 --- a/src/TDF/TDF_AttributeIndexedMap.hxx +++ b/src/TDF/TDF_AttributeIndexedMap.hxx @@ -16,7 +16,7 @@ #ifndef TDF_AttributeIndexedMap_HeaderFile #define TDF_AttributeIndexedMap_HeaderFile -#include +#include #include #include diff --git a/src/TNaming/TNaming.cdl b/src/TNaming/TNaming.cdl index 079acc5e7d..176c55a856 100644 --- a/src/TNaming/TNaming.cdl +++ b/src/TNaming/TNaming.cdl @@ -227,11 +227,7 @@ is imported DataMapOfShapePtrRefShape; imported DataMapIteratorOfDataMapOfShapePtrRefShape; - - pointer PtrDataMapOfShapePtrRefShape to DataMapOfShapePtrRefShape from TNaming; - - ---Category: private classes for ANaming -- =========================== diff --git a/src/TNaming/TNaming_NamedShape.cxx b/src/TNaming/TNaming_NamedShape.cxx index 0ecbc208df..2d0930b118 100644 --- a/src/TNaming/TNaming_NamedShape.cxx +++ b/src/TNaming/TNaming_NamedShape.cxx @@ -24,7 +24,6 @@ #include #include #include -#include #include #include #include diff --git a/src/TObj/TObj_Application.hxx b/src/TObj/TObj_Application.hxx index caa84a83ab..ee3eac6596 100644 --- a/src/TObj/TObj_Application.hxx +++ b/src/TObj/TObj_Application.hxx @@ -22,9 +22,9 @@ #include #include #include +#include class Handle(TObj_Application); -class TColStd_SequenceOfExtendedString; //! //! This is a base class for OCAF based TObj models diff --git a/src/TObj/TObj_Assistant.hxx b/src/TObj/TObj_Assistant.hxx index 9d67ddd893..faaaf9d572 100644 --- a/src/TObj/TObj_Assistant.hxx +++ b/src/TObj/TObj_Assistant.hxx @@ -19,11 +19,11 @@ #define TObj_Assistant_HeaderFile #include +#include +#include +#include class Handle(TObj_Model); -class TColStd_SequenceOfTransient; -class TColStd_SequenceOfAsciiString; -class TColStd_IndexedMapOfTransient; //! This class provides interface to the static data //! to be used during save or load models. diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cdl b/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cdl index 8842c91a4d..18b0e678db 100644 --- a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cdl +++ b/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cdl @@ -88,10 +88,10 @@ is ---Purpose: Move to the next Interference. is static; - Value(me) returns any Interference from TopOpeBRepDS + Value(me) returns Interference from TopOpeBRepDS ---Purpose: Returns the current Interference, matching the -- conditions (if defined). - ---C++: return & + ---C++: return const & is static; ChangeIterator(me : in out) diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx b/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx index 548b69201e..eead1ced4c 100644 --- a/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx +++ b/src/TopOpeBRepDS/TopOpeBRepDS_InterferenceIterator.cxx @@ -171,7 +171,7 @@ void TopOpeBRepDS_InterferenceIterator::Next() //purpose : //======================================================================= -Handle(TopOpeBRepDS_Interference)& TopOpeBRepDS_InterferenceIterator::Value() const +const Handle(TopOpeBRepDS_Interference)& TopOpeBRepDS_InterferenceIterator::Value() const { return myIterator.Value(); } diff --git a/src/TopOpeBRepTool/FILES b/src/TopOpeBRepTool/FILES index 49e1e8e9f4..33fe3b06f3 100755 --- a/src/TopOpeBRepTool/FILES +++ b/src/TopOpeBRepTool/FILES @@ -42,3 +42,4 @@ TopOpeBRepTool_IndexedDataMapOfShapeBox.hxx TopOpeBRepTool_IndexedDataMapOfShapeconnexity.hxx TopOpeBRepTool_DataMapOfShapeface.hxx TopOpeBRepTool_DataMapIteratorOfDataMapOfShapeface.hxx +TopOpeBRepTool_Plos.hxx diff --git a/src/TopOpeBRepTool/TopOpeBRepTool.cdl b/src/TopOpeBRepTool/TopOpeBRepTool.cdl index e1c303feab..25892e792a 100644 --- a/src/TopOpeBRepTool/TopOpeBRepTool.cdl +++ b/src/TopOpeBRepTool/TopOpeBRepTool.cdl @@ -67,7 +67,7 @@ is imported IndexedDataMapOfSolidClassifier; - pointer Plos to ListOfShape from TopTools; + imported Plos; class SolidClassifier; class CurveTool; diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx b/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx index 35707098ff..2d0ed32735 100644 --- a/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx +++ b/src/TopOpeBRepTool/TopOpeBRepTool_FuseEdges.cxx @@ -308,7 +308,7 @@ void TopOpeBRepTool_FuseEdges::BuildListResultEdges() TopTools_ListIteratorOfListOfShape itEdg; #endif - TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); + const TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); // the first edge of the list will be replaced by the result fusion edge if (OldEdge.Orientation()==TopAbs_REVERSED) { @@ -407,7 +407,7 @@ void TopOpeBRepTool_FuseEdges::Perform() TopTools_ListIteratorOfListOfShape itEdg; EdgeToSubs.Clear(); - TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); + const TopoDS_Edge& OldEdge = TopoDS::Edge(LmapEdg.First()); EdgeToSubs.Append(myMapEdg(iLst)); diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx b/src/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx new file mode 100644 index 0000000000..d4c3bf87a8 --- /dev/null +++ b/src/TopOpeBRepTool/TopOpeBRepTool_Plos.hxx @@ -0,0 +1,24 @@ +// Created on: 1994-03-10 +// Created by: Jean Yves LEBEY +// Copyright (c) 1994-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 _TopOpeBRepTool_Plos_HeaderFile +#define _TopOpeBRepTool_Plos_HeaderFile + +#include + +typedef TopTools_ListOfShape* TopOpeBRepTool_Plos; + +#endif // _TopOpeBRepTool_Plos_HeaderFile diff --git a/src/TopoDS/TopoDS_ListOfShape.hxx b/src/TopoDS/TopoDS_ListOfShape.hxx index be26901b42..817d90ac49 100644 --- a/src/TopoDS/TopoDS_ListOfShape.hxx +++ b/src/TopoDS/TopoDS_ListOfShape.hxx @@ -17,9 +17,9 @@ #ifndef TopoDS_ListOfShape_HeaderFile #define TopoDS_ListOfShape_HeaderFile -#include #include +class TopoDS_Shape; typedef NCollection_List TopoDS_ListOfShape; typedef NCollection_List::Iterator TopoDS_ListIteratorOfListOfShape; diff --git a/src/ViewerTest/ViewerTest.hxx b/src/ViewerTest/ViewerTest.hxx index 2e7cc4e3b3..96800dfaba 100644 --- a/src/ViewerTest/ViewerTest.hxx +++ b/src/ViewerTest/ViewerTest.hxx @@ -26,10 +26,10 @@ #include #include #include -#include +#include #include #include -#include +#include #include #include #include @@ -39,16 +39,11 @@ class TCollection_AsciiString; class V3d_View; class MMgt_TShared; class TopoDS_Shape; -class TopTools_HArray1OfShape; class AIS_InteractiveObject; -class TColStd_HArray1OfTransient; class V3d_Viewer; class AIS_InteractiveContext; class ViewerTest_EventManager; class ViewerTest_EventManager; -class ViewerTest_DoubleMapOfInteractiveAndName; -class ViewerTest_DoubleMapNodeOfDoubleMapOfInteractiveAndName; -class ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName; class Quantity_Color; class ViewerTest @@ -207,12 +202,6 @@ private: //! This method is relevant for MS Windows only and respectively //! returns WNT_WClass handle. Standard_EXPORT static const Handle(MMgt_TShared)& WClass(); - -friend class ViewerTest_EventManager; -friend class ViewerTest_DoubleMapOfInteractiveAndName; -friend class ViewerTest_DoubleMapNodeOfDoubleMapOfInteractiveAndName; -friend class ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName; - }; #endif // _ViewerTest_HeaderFile diff --git a/src/math/math_FunctionAllRoots.cxx b/src/math/math_FunctionAllRoots.cxx index c2b13913c7..7815ce495d 100644 --- a/src/math/math_FunctionAllRoots.cxx +++ b/src/math/math_FunctionAllRoots.cxx @@ -37,8 +37,8 @@ math_FunctionAllRoots::math_FunctionAllRoots ( Standard_Boolean Nul, PNul, InterNul, Nuld, Nulf; - Standard_Real DebNul,FinNul; - Standard_Integer Indd,Indf; + Standard_Real DebNul = 0., FinNul = 0.; + Standard_Integer Indd = 0, Indf = 0; Standard_Real cst,val,valsav=0,valbid; Standard_Boolean fini; Standard_Integer Nbp,i;