Salome HOME
Fix for issue #73: make all features titles looks in the same way
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Line.h
index 7877a719153b9917a7098c0227823cd4a82f4460..62dc6cfa971182255e968814247646764a89cb74 100644 (file)
@@ -22,18 +22,18 @@ class SketchPlugin_Line: public SketchPlugin_Feature
 {
 public:
   /// Returns the kind of a feature
- SKETCHPLUGIN_EXPORT virtual const std::string& getKind() 
 SKETCHPLUGIN_EXPORT virtual const std::string& getKind() 
   {static std::string MY_KIND = "SketchLine"; return MY_KIND;}
 
   /// Returns to which group in the document must be added feature
- SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() 
 SKETCHPLUGIN_EXPORT virtual const std::string& getGroup() 
   {static std::string MY_GROUP = "Sketch"; return MY_GROUP;}
 
   /// Creates a new part document if needed
- SKETCHPLUGIN_EXPORT virtual void execute();
 SKETCHPLUGIN_EXPORT virtual void execute();
 
   /// Request for initialization of data model of the feature: adding all attributes
- SKETCHPLUGIN_EXPORT virtual void initAttributes();
 SKETCHPLUGIN_EXPORT virtual void initAttributes();
 
   /// Returns the sketch preview
   SKETCHPLUGIN_EXPORT virtual const boost::shared_ptr<GeomAPI_Shape>& preview();