0024023: Revamp the OCCT Handle -- general
[occt.git] / src / Geom / Geom_AxisPlacement.cxx
index 7c332b4..0a1d02e 100644 (file)
@@ -5,8 +5,8 @@
 //
 // 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 version 2.1 as published
+// 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.
@@ -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());
 }