X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_IPolyline.cxx;h=42d68480fc866fe725c5141d7d50ae8a46b89429;hb=58bb6b7459bebeeb089c9ed486c4683a8bae7288;hp=df150b0a83c8525ce4fadbd6f13cec4a6ffc7c5f;hpb=b2b21a9b49f0df8f53c3a1bcb459a4ec081a84ec;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_IPolyline.cxx b/src/HYDROData/HYDROData_IPolyline.cxx old mode 100755 new mode 100644 index df150b0a..42d68480 --- a/src/HYDROData/HYDROData_IPolyline.cxx +++ b/src/HYDROData/HYDROData_IPolyline.cxx @@ -24,19 +24,13 @@ #include #include #include - #include - -#include -#include - #include -IMPLEMENT_STANDARD_HANDLE(HYDROData_IPolyline, HYDROData_Entity) IMPLEMENT_STANDARD_RTTIEXT(HYDROData_IPolyline, HYDROData_Entity) HYDROData_IPolyline::HYDROData_IPolyline() -: HYDROData_Entity() +: HYDROData_Entity( Geom_2d ) { } @@ -64,29 +58,19 @@ int HYDROData_IPolyline::NbPoints( const int theSectionIndex ) const return GetPoints( theSectionIndex ).Length(); } -TopoDS_Shape HYDROData_IPolyline::getPolylineShape() const +TopoDS_Shape HYDROData_IPolyline::GetShape() const { - TDF_Label aShapeLabel = myLab.FindChild( DataTag_PolylineShape, false ); - if ( !aShapeLabel.IsNull() ) - { - Handle(TNaming_NamedShape) aNamedShape; - if ( aShapeLabel.FindAttribute( TNaming_NamedShape::GetID(), aNamedShape ) ) - return aNamedShape->Get(); - } - return TopoDS_Shape(); + return HYDROData_Entity::GetShape( DataTag_PolylineShape ); } -void HYDROData_IPolyline::setPolylineShape( const TopoDS_Shape& theShape ) +void HYDROData_IPolyline::SetShape( const TopoDS_Shape& theShape ) { - TNaming_Builder aBuilder( myLab.FindChild( DataTag_PolylineShape ) ); - aBuilder.Generated( theShape ); + HYDROData_Entity::SetShape( DataTag_PolylineShape, theShape ); } -void HYDROData_IPolyline::removePolylineShape() +void HYDROData_IPolyline::RemovePolylineShape() { - TDF_Label aShapeLabel = myLab.FindChild( DataTag_PolylineShape, false ); - if ( !aShapeLabel.IsNull() ) - aShapeLabel.ForgetAllAttributes(); + SetShape( TopoDS_Shape() ); } void HYDROData_IPolyline::getSectionsLists( Handle(TDataStd_ExtStringList)& theNamesList,