Salome HOME
Fixed validators for Boolean and Intersection
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Point.h
index 88afb276d80b587ab66629cef9debf1c66d7de5b..142d0915a4e008fd1cbc43f69452553172f70cce 100644 (file)
@@ -31,13 +31,6 @@ class SketchPlugin_Point : public SketchPlugin_SketchEntity
     static const std::string MY_COORD_ID("PointCoordindates");
     return MY_COORD_ID;
   }
-  /// Coordinates of the point
-  inline static const std::string& TABLE_ID()
-  {
-    static const std::string MY_TABLE_ID("TableValue");
-    return MY_TABLE_ID;
-  }
-
   /// Returns the kind of a feature
   SKETCHPLUGIN_EXPORT virtual const std::string& getKind()
   {
@@ -51,9 +44,6 @@ class SketchPlugin_Point : public SketchPlugin_SketchEntity
   /// Creates a new part document if needed
   SKETCHPLUGIN_EXPORT virtual void execute();
 
-  /// Request for initialization of data model of the feature: adding all attributes
-  SKETCHPLUGIN_EXPORT virtual void initAttributes();
-
   /// Moves the feature
   /// \param theDeltaX the delta for X coordinate is moved
   /// \param theDeltaY the delta for Y coordinate is moved
@@ -64,6 +54,10 @@ class SketchPlugin_Point : public SketchPlugin_SketchEntity
 
   /// Use plugin manager for features creation
   SketchPlugin_Point();
+
+protected:
+  /// \brief Initializes attributes of derived class.
+  virtual void initDerivedClassAttributes();
 };
 
 #endif