Salome HOME
The "MustBeUpdated" flag is moved to base data object class and implemented for calcu...
[modules/hydro.git] / src / HYDROData / HYDROData_IAltitudeObject.cxx
index 2dc967a5efe2bfca96901cc3906b13d9ffc3a23e..79c11237ba3ed3a0b36d5d2e2ef5143b687df069 100644 (file)
@@ -3,8 +3,6 @@
 
 #include <gp_XY.hxx>
 
-#include <QPointF>
-
 #define INVALID_ALTITUDE_VALUE -9999.0
 
 IMPLEMENT_STANDARD_HANDLE(HYDROData_IAltitudeObject, HYDROData_Entity)
@@ -24,11 +22,4 @@ double HYDROData_IAltitudeObject::GetInvalidAltitude()
   return INVALID_ALTITUDE_VALUE;
 }
 
-double HYDROData_IAltitudeObject::GetAltitudeForPoint( const QPointF& thePoint ) const
-{
-  gp_XY aGpPoint( thePoint.x(), thePoint.y() );
-  return GetAltitudeForPoint( aGpPoint );
-}
-
-