0024023: Revamp the OCCT Handle -- general
[occt.git] / src / Geom / Geom_AxisPlacement.cxx
index 5b8cfbb..0a1d02e 100644 (file)
@@ -16,7 +16,6 @@
 
 #include <Geom_AxisPlacement.ixx>
 
-typedef Handle(Geom_AxisPlacement) Handle(AxisPlacement);
 typedef gp_Ax1 Ax1;
 typedef gp_Dir Dir;
 typedef gp_Pnt Pnt;
@@ -34,7 +33,7 @@ void Geom_AxisPlacement::SetAxis (const Ax1& A1) { axis = A1; }
 
 void Geom_AxisPlacement::SetLocation (const Pnt& P) {axis.SetLocation (P);}
 
-Standard_Real Geom_AxisPlacement::Angle (const Handle(AxisPlacement)& Other) const {
+Standard_Real Geom_AxisPlacement::Angle (const Handle(Geom_AxisPlacement)& Other) const {
  return axis.Angle (Other->Axis());
 }