X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROCurveCreator%2FCurveCreator_ICurve.hxx;h=40696e9bebe51e741207ff1852a71f72a42c7830;hb=c363fc5c3541669e07cf4d991cc1e94253147ac1;hp=fd5e63d5b5e5518d999bc69487208ce82ebbba55;hpb=7e825ec456c9331ef0df1cb59865cc55f0d8516a;p=modules%2Fhydro.git diff --git a/src/HYDROCurveCreator/CurveCreator_ICurve.hxx b/src/HYDROCurveCreator/CurveCreator_ICurve.hxx index fd5e63d5..40696e9b 100644 --- a/src/HYDROCurveCreator/CurveCreator_ICurve.hxx +++ b/src/HYDROCurveCreator/CurveCreator_ICurve.hxx @@ -26,8 +26,9 @@ #include "CurveCreator_Macro.hxx" #include #include +#include -#include +class Handle_AIS_InteractiveObject; namespace CurveCreator { @@ -57,7 +58,10 @@ namespace CurveCreator class CURVECREATOR_EXPORT CurveCreator_ICurve { public: - typedef std::vector ListAISObjects; + typedef std::pair SectionToPoint; + typedef std::deque SectionToPointList; + + typedef std::deque< std::pair< SectionToPoint,std::deque< float > > > SectionToPointCoordsList; public: /***********************************************/ @@ -146,9 +150,14 @@ public: virtual bool setPoint( const int theISection, const int theIPnt, const std::deque& theNewCoords ) = 0; + + //! Set coordinates of specified points from different sections + virtual bool setSeveralPoints( const SectionToPointCoordsList &theSectionToPntCoords) = 0; //! Remove point with given id virtual bool removePoint( const int theISection, const int theIPnt = -1 ) = 0; + //! Remove several points from different sections + virtual bool removeSeveralPoints( const SectionToPointList &theSectionToPntIDs) = 0; //! Get coordinates of specified point virtual std::deque getPoint( const int theISection, @@ -169,7 +178,12 @@ public: /***********************************************/ /*** Presentation methods ***/ /***********************************************/ - virtual ListAISObjects constructWire() const = 0; + + virtual Handle_AIS_InteractiveObject getAISObject( const bool theNeedToBuild = false ) const = 0; + +protected: + virtual void constructAISObject() = 0; + }; #endif