Salome HOME
refs #1330: basic implementation of the not zoomable polyline arrows
[modules/hydro.git] / src / HYDROData / HYDROData_Digue.cxx
index 9566574e55825a12caea6edef3e57afd871d9484..a102026fd42b4a93500df4c79a0f4176f0bb91ac 100644 (file)
@@ -1,8 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
-//
-// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-//
+// Copyright (C) 2014-2015  EDF-R&D
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
@@ -29,7 +25,6 @@
 #include <QColor>
 #include <QStringList>
 
-IMPLEMENT_STANDARD_HANDLE(HYDROData_Digue,HYDROData_Channel)
 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Digue,HYDROData_Channel)
 
 
@@ -42,23 +37,13 @@ HYDROData_Digue::~HYDROData_Digue()
 {
 }
 
-QColor HYDROData_Digue::DefaultFillingColor()
+QColor HYDROData_Digue::DefaultFillingColor() const
 {
   return QColor( Qt::red );
 }
 
-QColor HYDROData_Digue::DefaultBorderColor()
+QColor HYDROData_Digue::DefaultBorderColor() const
 {
   return QColor( Qt::transparent );
 }
 
-QColor HYDROData_Digue::getDefaultFillingColor() const
-{
-  return DefaultFillingColor();
-}
-
-QColor HYDROData_Digue::getDefaultBorderColor() const
-{
-  return DefaultBorderColor();
-}
-