Salome HOME
Get altitude from region implementation.
[modules/hydro.git] / src / HYDROData / HYDROData_Digue.cxx
1
2 #include "HYDROData_Digue.h"
3
4 #include "HYDROData_Document.h"
5
6 #include <TopoDS_Shape.hxx>
7
8 #include <QColor>
9 #include <QStringList>
10
11 IMPLEMENT_STANDARD_HANDLE(HYDROData_Digue,HYDROData_Channel)
12 IMPLEMENT_STANDARD_RTTIEXT(HYDROData_Digue,HYDROData_Channel)
13
14
15 HYDROData_Digue::HYDROData_Digue()
16 : HYDROData_Channel()
17 {
18 }
19
20 HYDROData_Digue::~HYDROData_Digue()
21 {
22 }
23
24 QColor HYDROData_Digue::DefaultFillingColor()
25 {
26   return QColor( Qt::red );
27 }
28
29 QColor HYDROData_Digue::DefaultBorderColor()
30 {
31   return QColor( Qt::transparent );
32 }
33
34 QColor HYDROData_Digue::getDefaultFillingColor() const
35 {
36   return DefaultFillingColor();
37 }
38
39 QColor HYDROData_Digue::getDefaultBorderColor() const
40 {
41   return DefaultBorderColor();
42 }
43