1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026460: Implicit cast to TopoDS_Shape compilation error due to ambiguous conversion

- make operator TopoDS_Shape() cast a "non-const" member function
- make operator TopoDS_*() cast "non-const" when mutating behaviour is possible
- align derived class methods and overrides with the above changes

fix compilation for CR26460
- make argument for IsWRCase2 (non-const) BRepAlgoAPI_BooleanOperation&
This commit is contained in:
cshorler 2015-08-13 10:52:52 +03:00 committed by ski
parent b604f54327
commit ecac41a957
32 changed files with 60 additions and 60 deletions

View File

@ -118,7 +118,7 @@ void BRepAlgoAPI_Algo::UserBreak() const
//function : Shape //function : Shape
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Shape& BRepAlgoAPI_Algo::Shape() const const TopoDS_Shape& BRepAlgoAPI_Algo::Shape()
{ {
return myShape; return myShape;
} }

View File

@ -58,7 +58,7 @@ public:
//! Set the Progress Indicator object. //! Set the Progress Indicator object.
Standard_EXPORT void SetProgressIndicator (const Handle(Message_ProgressIndicator)& theObj); Standard_EXPORT void SetProgressIndicator (const Handle(Message_ProgressIndicator)& theObj);
Standard_EXPORT virtual const TopoDS_Shape& Shape() const Standard_OVERRIDE; Standard_EXPORT virtual const TopoDS_Shape& Shape() Standard_OVERRIDE;

View File

@ -875,7 +875,7 @@ BRepBuilderAPI_EdgeError BRepBuilderAPI_MakeEdge::Error() const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Edge& BRepBuilderAPI_MakeEdge::Edge()const const TopoDS_Edge& BRepBuilderAPI_MakeEdge::Edge()
{ {
return myMakeEdge.Edge(); return myMakeEdge.Edge();
} }
@ -909,7 +909,7 @@ const TopoDS_Vertex& BRepBuilderAPI_MakeEdge::Vertex2()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeEdge::operator TopoDS_Edge() const BRepBuilderAPI_MakeEdge::operator TopoDS_Edge()
{ {
return Edge(); return Edge();
} }

View File

@ -250,8 +250,8 @@ public:
//! Returns the constructed edge. //! Returns the constructed edge.
//! Exceptions StdFail_NotDone if the edge is not built. //! Exceptions StdFail_NotDone if the edge is not built.
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge();
Standard_EXPORT operator TopoDS_Edge() const; Standard_EXPORT operator TopoDS_Edge();
//! Returns the first vertex of the edge. May be Null. //! Returns the first vertex of the edge. May be Null.
Standard_EXPORT const TopoDS_Vertex& Vertex1() const; Standard_EXPORT const TopoDS_Vertex& Vertex1() const;

View File

@ -617,7 +617,7 @@ BRepBuilderAPI_EdgeError BRepBuilderAPI_MakeEdge2d::Error() const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Edge& BRepBuilderAPI_MakeEdge2d::Edge()const const TopoDS_Edge& BRepBuilderAPI_MakeEdge2d::Edge()
{ {
return myMakeEdge2d.Edge(); return myMakeEdge2d.Edge();
} }
@ -651,7 +651,7 @@ const TopoDS_Vertex& BRepBuilderAPI_MakeEdge2d::Vertex2()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeEdge2d::operator TopoDS_Edge() const BRepBuilderAPI_MakeEdge2d::operator TopoDS_Edge()
{ {
return Edge(); return Edge();
} }

View File

@ -149,8 +149,8 @@ public:
//! Returns the error description when NotDone. //! Returns the error description when NotDone.
Standard_EXPORT BRepBuilderAPI_EdgeError Error() const; Standard_EXPORT BRepBuilderAPI_EdgeError Error() const;
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge();
Standard_EXPORT operator TopoDS_Edge() const; Standard_EXPORT operator TopoDS_Edge();
//! Returns the first vertex of the edge. May be Null. //! Returns the first vertex of the edge. May be Null.
Standard_EXPORT const TopoDS_Vertex& Vertex1() const; Standard_EXPORT const TopoDS_Vertex& Vertex1() const;

View File

@ -236,7 +236,7 @@ const TopoDS_Edge& BRepBuilderAPI_MakePolygon::Edge()const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Wire& BRepBuilderAPI_MakePolygon::Wire()const const TopoDS_Wire& BRepBuilderAPI_MakePolygon::Wire()
{ {
return myMakePolygon.Wire(); return myMakePolygon.Wire();
} }
@ -256,7 +256,7 @@ BRepBuilderAPI_MakePolygon::operator TopoDS_Edge() const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakePolygon::operator TopoDS_Wire() const BRepBuilderAPI_MakePolygon::operator TopoDS_Wire()
{ {
return Wire(); return Wire();
} }

View File

@ -168,8 +168,8 @@ Standard_EXPORT operator TopoDS_Edge() const;
//! Exceptions //! Exceptions
//! StdFail_NotDone if the wire is not built, i.e. if fewer than //! StdFail_NotDone if the wire is not built, i.e. if fewer than
//! two vertices have been chained together by this construction algorithm. //! two vertices have been chained together by this construction algorithm.
Standard_EXPORT const TopoDS_Wire& Wire() const; Standard_EXPORT const TopoDS_Wire& Wire();
Standard_EXPORT operator TopoDS_Wire() const; Standard_EXPORT operator TopoDS_Wire();

View File

@ -49,7 +49,7 @@ void BRepBuilderAPI_MakeShape::Build()
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Shape& BRepBuilderAPI_MakeShape::Shape() const const TopoDS_Shape& BRepBuilderAPI_MakeShape::Shape()
{ {
if (!IsDone()) { if (!IsDone()) {
// the following is const cast away // the following is const cast away
@ -65,7 +65,7 @@ const TopoDS_Shape& BRepBuilderAPI_MakeShape::Shape() const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeShape::operator TopoDS_Shape() const BRepBuilderAPI_MakeShape::operator TopoDS_Shape()
{ {
return Shape(); return Shape();
} }

View File

@ -50,8 +50,8 @@ Standard_EXPORT virtual ~BRepBuilderAPI_MakeShape(){Delete() ; }
//! Returns a shape built by the shape construction algorithm. //! Returns a shape built by the shape construction algorithm.
//! Raises exception StdFail_NotDone if the shape was not built. //! Raises exception StdFail_NotDone if the shape was not built.
Standard_EXPORT virtual const TopoDS_Shape& Shape() const; Standard_EXPORT virtual const TopoDS_Shape& Shape();
Standard_EXPORT operator TopoDS_Shape() const; Standard_EXPORT operator TopoDS_Shape();
//! Returns the list of shapes generated from the //! Returns the list of shapes generated from the
//! shape <S>. //! shape <S>.

View File

@ -155,7 +155,7 @@ Standard_Boolean BRepBuilderAPI_MakeSolid::IsDone() const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Solid& BRepBuilderAPI_MakeSolid::Solid()const const TopoDS_Solid& BRepBuilderAPI_MakeSolid::Solid()
{ {
return myMakeSolid.Solid(); return myMakeSolid.Solid();
} }
@ -167,7 +167,7 @@ const TopoDS_Solid& BRepBuilderAPI_MakeSolid::Solid()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeSolid::operator TopoDS_Solid() const BRepBuilderAPI_MakeSolid::operator TopoDS_Solid()
{ {
return Solid(); return Solid();
} }

View File

@ -117,8 +117,8 @@ public:
Standard_EXPORT virtual Standard_Boolean IsDone() const Standard_OVERRIDE; Standard_EXPORT virtual Standard_Boolean IsDone() const Standard_OVERRIDE;
//! Returns the new Solid. //! Returns the new Solid.
Standard_EXPORT const TopoDS_Solid& Solid() const; Standard_EXPORT const TopoDS_Solid& Solid();
Standard_EXPORT operator TopoDS_Solid() const; Standard_EXPORT operator TopoDS_Solid();
Standard_EXPORT virtual Standard_Boolean IsDeleted (const TopoDS_Shape& S) Standard_OVERRIDE; Standard_EXPORT virtual Standard_Boolean IsDeleted (const TopoDS_Shape& S) Standard_OVERRIDE;

View File

@ -41,7 +41,7 @@ BRepBuilderAPI_MakeVertex::BRepBuilderAPI_MakeVertex(const gp_Pnt& P)
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Vertex& BRepBuilderAPI_MakeVertex::Vertex()const const TopoDS_Vertex& BRepBuilderAPI_MakeVertex::Vertex()
{ {
return myMakeVertex.Vertex(); return myMakeVertex.Vertex();
} }
@ -53,7 +53,7 @@ const TopoDS_Vertex& BRepBuilderAPI_MakeVertex::Vertex()const
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeVertex::operator TopoDS_Vertex() const BRepBuilderAPI_MakeVertex::operator TopoDS_Vertex()
{ {
return Vertex(); return Vertex();
} }

View File

@ -50,8 +50,8 @@ public:
Standard_EXPORT BRepBuilderAPI_MakeVertex(const gp_Pnt& P); Standard_EXPORT BRepBuilderAPI_MakeVertex(const gp_Pnt& P);
//! Returns the constructed vertex. //! Returns the constructed vertex.
Standard_EXPORT const TopoDS_Vertex& Vertex() const; Standard_EXPORT const TopoDS_Vertex& Vertex();
Standard_EXPORT operator TopoDS_Vertex() const; Standard_EXPORT operator TopoDS_Vertex();

View File

@ -175,7 +175,7 @@ void BRepBuilderAPI_MakeWire::Add(const TopTools_ListOfShape& L)
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Wire& BRepBuilderAPI_MakeWire::Wire()const const TopoDS_Wire& BRepBuilderAPI_MakeWire::Wire()
{ {
return myMakeWire.Wire(); return myMakeWire.Wire();
} }
@ -208,7 +208,7 @@ const TopoDS_Vertex& BRepBuilderAPI_MakeWire::Vertex()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepBuilderAPI_MakeWire::operator TopoDS_Wire() const BRepBuilderAPI_MakeWire::operator TopoDS_Wire()
{ {
return Wire(); return Wire();
} }

View File

@ -160,8 +160,8 @@ public:
//! Returns the constructed wire; or the part of the wire //! Returns the constructed wire; or the part of the wire
//! under construction already built. //! under construction already built.
//! Exceptions StdFail_NotDone if a wire is not built. //! Exceptions StdFail_NotDone if a wire is not built.
Standard_EXPORT const TopoDS_Wire& Wire() const; Standard_EXPORT const TopoDS_Wire& Wire();
Standard_EXPORT operator TopoDS_Wire() const; Standard_EXPORT operator TopoDS_Wire();
//! Returns the last edge added to the wire under construction. //! Returns the last edge added to the wire under construction.
//! Warning //! Warning

View File

@ -1214,7 +1214,7 @@ BRepLib_EdgeError BRepLib_MakeEdge::Error() const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Edge& BRepLib_MakeEdge::Edge()const const TopoDS_Edge& BRepLib_MakeEdge::Edge()
{ {
return TopoDS::Edge(Shape()); return TopoDS::Edge(Shape());
} }
@ -1250,7 +1250,7 @@ const TopoDS_Vertex& BRepLib_MakeEdge::Vertex2()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakeEdge::operator TopoDS_Edge() const BRepLib_MakeEdge::operator TopoDS_Edge()
{ {
return Edge(); return Edge();
} }

View File

@ -174,8 +174,8 @@ public:
//! Returns the error description when NotDone. //! Returns the error description when NotDone.
Standard_EXPORT BRepLib_EdgeError Error() const; Standard_EXPORT BRepLib_EdgeError Error() const;
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge();
Standard_EXPORT operator TopoDS_Edge() const; Standard_EXPORT operator TopoDS_Edge();
//! Returns the first vertex of the edge. May be Null. //! Returns the first vertex of the edge. May be Null.
Standard_EXPORT const TopoDS_Vertex& Vertex1() const; Standard_EXPORT const TopoDS_Vertex& Vertex1() const;

View File

@ -738,7 +738,7 @@ BRepLib_EdgeError BRepLib_MakeEdge2d::Error() const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Edge& BRepLib_MakeEdge2d::Edge()const const TopoDS_Edge& BRepLib_MakeEdge2d::Edge()
{ {
return TopoDS::Edge(Shape()); return TopoDS::Edge(Shape());
} }
@ -774,7 +774,7 @@ const TopoDS_Vertex& BRepLib_MakeEdge2d::Vertex2()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakeEdge2d::operator TopoDS_Edge() const BRepLib_MakeEdge2d::operator TopoDS_Edge()
{ {
return Edge(); return Edge();
} }

View File

@ -146,8 +146,8 @@ public:
//! Returns the error description when NotDone. //! Returns the error description when NotDone.
Standard_EXPORT BRepLib_EdgeError Error() const; Standard_EXPORT BRepLib_EdgeError Error() const;
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge();
Standard_EXPORT operator TopoDS_Edge() const; Standard_EXPORT operator TopoDS_Edge();
//! Returns the first vertex of the edge. May be Null. //! Returns the first vertex of the edge. May be Null.
Standard_EXPORT const TopoDS_Vertex& Vertex1() const; Standard_EXPORT const TopoDS_Vertex& Vertex1() const;

View File

@ -271,7 +271,7 @@ const TopoDS_Edge& BRepLib_MakePolygon::Edge()const
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Wire& BRepLib_MakePolygon::Wire()const const TopoDS_Wire& BRepLib_MakePolygon::Wire()
{ {
return TopoDS::Wire(Shape()); return TopoDS::Wire(Shape());
} }
@ -291,7 +291,7 @@ BRepLib_MakePolygon::operator TopoDS_Edge() const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakePolygon::operator TopoDS_Wire() const BRepLib_MakePolygon::operator TopoDS_Wire()
{ {
return Wire(); return Wire();
} }

View File

@ -87,8 +87,8 @@ public:
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge() const;
Standard_EXPORT operator TopoDS_Edge() const; Standard_EXPORT operator TopoDS_Edge() const;
Standard_EXPORT const TopoDS_Wire& Wire() const; Standard_EXPORT const TopoDS_Wire& Wire();
Standard_EXPORT operator TopoDS_Wire() const; Standard_EXPORT operator TopoDS_Wire();

View File

@ -43,7 +43,7 @@ void BRepLib_MakeShape::Build()
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Shape& BRepLib_MakeShape::Shape() const const TopoDS_Shape& BRepLib_MakeShape::Shape()
{ {
if (!IsDone()) { if (!IsDone()) {
// the following is const cast away // the following is const cast away
@ -59,7 +59,7 @@ const TopoDS_Shape& BRepLib_MakeShape::Shape() const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakeShape::operator TopoDS_Shape() const BRepLib_MakeShape::operator TopoDS_Shape()
{ {
return Shape(); return Shape();
} }

View File

@ -49,8 +49,8 @@ public:
//! may be redefined. //! may be redefined.
Standard_EXPORT void Build(); Standard_EXPORT void Build();
Standard_EXPORT const TopoDS_Shape& Shape() const; Standard_EXPORT const TopoDS_Shape& Shape();
Standard_EXPORT operator TopoDS_Shape() const; Standard_EXPORT operator TopoDS_Shape();
//! returns the status of the Face after //! returns the status of the Face after
//! the shape creation. //! the shape creation.

View File

@ -170,7 +170,7 @@ void BRepLib_MakeSolid::Add(const TopoDS_Shell& S)
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Solid& BRepLib_MakeSolid::Solid()const const TopoDS_Solid& BRepLib_MakeSolid::Solid()
{ {
return TopoDS::Solid(Shape()); return TopoDS::Solid(Shape());
} }
@ -182,7 +182,7 @@ const TopoDS_Solid& BRepLib_MakeSolid::Solid()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakeSolid::operator TopoDS_Solid() const BRepLib_MakeSolid::operator TopoDS_Solid()
{ {
return TopoDS::Solid(Shape()); return TopoDS::Solid(Shape());
} }

View File

@ -64,8 +64,8 @@ public:
Standard_EXPORT void Add (const TopoDS_Shell& S); Standard_EXPORT void Add (const TopoDS_Shell& S);
//! Returns the new Solid. //! Returns the new Solid.
Standard_EXPORT const TopoDS_Solid& Solid() const; Standard_EXPORT const TopoDS_Solid& Solid();
Standard_EXPORT operator TopoDS_Solid() const; Standard_EXPORT operator TopoDS_Solid();
//! returns the status of the Face after //! returns the status of the Face after
//! the shape creation. //! the shape creation.

View File

@ -39,7 +39,7 @@ BRepLib_MakeVertex::BRepLib_MakeVertex(const gp_Pnt& P)
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Vertex& BRepLib_MakeVertex::Vertex()const const TopoDS_Vertex& BRepLib_MakeVertex::Vertex()
{ {
return TopoDS::Vertex(Shape()); return TopoDS::Vertex(Shape());
} }
@ -51,7 +51,7 @@ const TopoDS_Vertex& BRepLib_MakeVertex::Vertex()const
//======================================================================= //=======================================================================
BRepLib_MakeVertex::operator TopoDS_Vertex() const BRepLib_MakeVertex::operator TopoDS_Vertex()
{ {
return Vertex(); return Vertex();
} }

View File

@ -36,8 +36,8 @@ public:
Standard_EXPORT BRepLib_MakeVertex(const gp_Pnt& P); Standard_EXPORT BRepLib_MakeVertex(const gp_Pnt& P);
Standard_EXPORT const TopoDS_Vertex& Vertex() const; Standard_EXPORT const TopoDS_Vertex& Vertex();
Standard_EXPORT operator TopoDS_Vertex() const; Standard_EXPORT operator TopoDS_Vertex();

View File

@ -396,7 +396,7 @@ void BRepLib_MakeWire::Add(const TopoDS_Edge& E)
//purpose : //purpose :
//======================================================================= //=======================================================================
const TopoDS_Wire& BRepLib_MakeWire::Wire()const const TopoDS_Wire& BRepLib_MakeWire::Wire()
{ {
return TopoDS::Wire(Shape()); return TopoDS::Wire(Shape());
} }
@ -429,7 +429,7 @@ const TopoDS_Vertex& BRepLib_MakeWire::Vertex()const
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepLib_MakeWire::operator TopoDS_Wire() const BRepLib_MakeWire::operator TopoDS_Wire()
{ {
return Wire(); return Wire();
} }

View File

@ -117,8 +117,8 @@ public:
Standard_EXPORT BRepLib_WireError Error() const; Standard_EXPORT BRepLib_WireError Error() const;
//! Returns the new wire. //! Returns the new wire.
Standard_EXPORT const TopoDS_Wire& Wire() const; Standard_EXPORT const TopoDS_Wire& Wire();
Standard_EXPORT operator TopoDS_Wire() const; Standard_EXPORT operator TopoDS_Wire();
//! Returns the last edge added to the wire. //! Returns the last edge added to the wire.
Standard_EXPORT const TopoDS_Edge& Edge() const; Standard_EXPORT const TopoDS_Edge& Edge() const;

View File

@ -1528,7 +1528,7 @@ void QANewBRepNaming_BooleanOperationFeat::LoadSymmetricalEdges (BRepAlgoAPI_Boo
//function : ISWRCase2 //function : ISWRCase2
//purpose : //purpose :
//======================================================================= //=======================================================================
Standard_Boolean QANewBRepNaming_BooleanOperationFeat::IsWRCase2(const BRepAlgoAPI_BooleanOperation& MS) { Standard_Boolean QANewBRepNaming_BooleanOperationFeat::IsWRCase2(BRepAlgoAPI_BooleanOperation& MS) {
const TopoDS_Shape& Result = MS.Shape(); const TopoDS_Shape& Result = MS.Shape();
const TopAbs_ShapeEnum& ResType = ShapeType(Result); const TopAbs_ShapeEnum& ResType = ShapeType(Result);
if(ResType == TopAbs_COMPOUND || ResType >= TopAbs_FACE) return Standard_False; if(ResType == TopAbs_COMPOUND || ResType >= TopAbs_FACE) return Standard_False;

View File

@ -73,7 +73,7 @@ public:
Standard_EXPORT static Standard_Boolean IsWRCase (const BRepAlgoAPI_BooleanOperation& theMS); Standard_EXPORT static Standard_Boolean IsWRCase (const BRepAlgoAPI_BooleanOperation& theMS);
//! Returns true if workaround case identified //! Returns true if workaround case identified
Standard_EXPORT static Standard_Boolean IsWRCase2 (const BRepAlgoAPI_BooleanOperation& theMS); Standard_EXPORT static Standard_Boolean IsWRCase2 (BRepAlgoAPI_BooleanOperation& MS);