Salome HOME
Using stl container instead of Qt.
[modules/hydro.git] / src / HYDROCurveCreator / CurveCreator_Curve.cxx
index f27cfb2ef807efd86750ec8da738cab674fd5be5..f056b03426ae1b2c486c6de592bacf4d73193df8 100644 (file)
@@ -860,6 +860,12 @@ bool CurveCreator_Curve::setPoint( const int theISection,
   return res; 
 }
 
+//! Set coordinates of specified points from different sections
+bool CurveCreator_Curve::setSeveralPoints( const SectionToPointCoordsList &theSectionToPntCoords)
+{
+  return false;
+}
+
 //! For internal use only! Undo/Redo are not used here.
 bool CurveCreator_Curve::removePointsInternal( const std::vector<int> &theISections, 
                                                const std::vector<int> &theIPnts )
@@ -904,7 +910,13 @@ bool CurveCreator_Curve::removePoint( const int theISection, const int theIPnt )
   return res;
 }
 
-//=======================================================================
+//! Remove several points from different sections with given ids
+bool CurveCreator_Curve::removeSeveralPoints( const SectionToPointList &theSectionToPntIDs)
+{
+  return false;
+}
+
+  //=======================================================================
 // function: getCoordinates
 // purpose:
 //=======================================================================