X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_ConstraintLength.h;h=bc614e137ad3bf22c24931359d5763635e762cf4;hb=2b4f4bf278c841500eb29bb5d204690427b0d56b;hp=3e4cde4a0ad980e395bcb843592daf4a8aef9d21;hpb=773b6bcbbd4a811340e699667014b13185f80dbc;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_ConstraintLength.h b/src/SketchPlugin/SketchPlugin_ConstraintLength.h index 3e4cde4a0..bc614e137 100644 --- a/src/SketchPlugin/SketchPlugin_ConstraintLength.h +++ b/src/SketchPlugin/SketchPlugin_ConstraintLength.h @@ -7,8 +7,11 @@ #include "SketchPlugin.h" #include "SketchPlugin_Constraint.h" +#include #include +/// Length constraint kind +const std::string SKETCH_CONSTRAINT_LENGTH_KIND("SketchConstraintLength"); /** \class SketchPlugin_ConstraintLength * \ingroup DataModel @@ -22,11 +25,11 @@ class SketchPlugin_ConstraintLength: public SketchPlugin_Constraint public: /// \brief Returns the kind of a feature SKETCHPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = "SketchConstraintLength"; return MY_KIND;} + {static std::string MY_KIND = SKETCH_CONSTRAINT_LENGTH_KIND; return MY_KIND;} /// \brief Returns to which group in the document must be added feature SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() - {static std::string MY_GROUP = "Sketch"; return MY_GROUP;} + {static std::string MY_GROUP = SKETCH_KIND; return MY_GROUP;} /// \brief Creates a new part document if needed SKETCHPLUGIN_EXPORT virtual void execute();