X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintFillet.h;h=909473bac93b853fff613d26ab42dc83a28a8878;hb=c7a5ff20294ae8270bfb9120b8887f0c9959d658;hp=8701917978856768b09c5c6f6c6b477fa75f7124;hpb=158b35b7e2ad3bf673825273a06608ae3e20511d;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintFillet.h b/src/SketchPlugin/SketchPlugin_ConstraintFillet.h index 870191797..909473bac 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintFillet.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintFillet.h @@ -44,6 +44,10 @@ class SketchPlugin_ConstraintFillet : public SketchPlugin_ConstraintBase /// \brief Request for initialization of data model of the feature: adding all attributes SKETCHPLUGIN_EXPORT virtual void initAttributes(); + /// Called on change of any argument-attribute of this object + /// \param theID identifier of changed attribute + SKETCHPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID); + /// Returns the AIS preview SKETCHPLUGIN_EXPORT virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious); @@ -53,6 +57,10 @@ class SketchPlugin_ConstraintFillet : public SketchPlugin_ConstraintBase /// \brief Use plugin manager for features creation SketchPlugin_ConstraintFillet(); + +private: + std::list myProducedFeatures; ///< list of constraints provided by the fillet + std::list myBaseObjects; ///< list of objects the fillet is based }; #endif