X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintFillet.h;h=909473bac93b853fff613d26ab42dc83a28a8878;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=5b7cd49468fc496a6f04990d0c38fcc7b314ce41;hpb=26d09c86761e841a0cb93418fd91d817f5e26763;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintFillet.h b/src/SketchPlugin/SketchPlugin_ConstraintFillet.h index 5b7cd4946..909473bac 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintFillet.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintFillet.h @@ -44,11 +44,23 @@ 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); + /// Reimplemented from ModelAPI_Feature::isMacro(). + /// \returns true + SKETCHPLUGIN_EXPORT virtual bool isMacro() const; + /// \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