Salome HOME
Feature #296: Georeferencement of images on the base of files.
[modules/hydro.git] / src / HYDROData / HYDROData_Digue.cxx
index 077d7e8b96a3f631ad3263bfe590ea66acfd6400..5efa44060097c0803dab09ec90bc7994fadd103e 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <TopoDS_Shape.hxx>
 
+#include <QColor>
 #include <QStringList>
 
 #define PYTHON_DIGUE_ID "KIND_DIGUE"
@@ -44,5 +45,23 @@ QStringList HYDROData_Digue::DumpToPython( MapOfTreatedObjects& theTreatedObject
   return aResList;
 }
 
+QColor HYDROData_Digue::DefaultFillingColor()
+{
+  return QColor( Qt::red );
+}
+
+QColor HYDROData_Digue::DefaultBorderColor()
+{
+  return QColor( Qt::transparent );
+}
 
+QColor HYDROData_Digue::getDefaultFillingColor() const
+{
+  return DefaultFillingColor();
+}
+
+QColor HYDROData_Digue::getDefaultBorderColor() const
+{
+  return DefaultBorderColor();
+}