Salome HOME
Remove setData overlapping: it causes problem of linking in Linux
authormpv <mikhail.ponikarov@opencascade.com>
Tue, 20 May 2014 06:51:06 +0000 (10:51 +0400)
committermpv <mikhail.ponikarov@opencascade.com>
Tue, 20 May 2014 06:51:06 +0000 (10:51 +0400)
src/SketchPlugin/SketchPlugin_Feature.cpp
src/SketchPlugin/SketchPlugin_Feature.h

index dbaa6f8240e9b6461e7e2ace6f738ae8e0e3e111..6f8f41af8d3d86e28279af7e43b3ae04e3931c1e 100644 (file)
@@ -10,33 +10,6 @@ SketchPlugin_Feature::SketchPlugin_Feature()
   mySketch = 0;
 }
 
-void SketchPlugin_Feature::setData(boost::shared_ptr<ModelAPI_Data> theData)
-{
-  ModelAPI_Feature::setData(theData);
-
-  // find sketch that references to this feature
-  int aSketches = document()->size("Construction");
-  for(int a = 0; a < aSketches && !mySketch; a++) {
-    boost::shared_ptr<ModelAPI_Object> anObj = 
-      boost::dynamic_pointer_cast<ModelAPI_Object>(document()->feature("Construction", a));
-    if (anObj) {
-      boost::shared_ptr<SketchPlugin_Sketch> aSketch = 
-        boost::dynamic_pointer_cast<SketchPlugin_Sketch>(anObj->featureRef());
-      if (aSketch) {
-        std::list<boost::shared_ptr<ModelAPI_Feature> > aList = 
-          aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list();
-        std::list<boost::shared_ptr<ModelAPI_Feature> >::iterator aSub = aList.begin();
-        for(; aSub != aList.end(); aSub++) {
-          if ((*aSub)->data()->isEqual(theData)) {
-            mySketch = aSketch.get();
-            break;
-          }
-        }
-      }
-    }
-  }
-}
-
 void SketchPlugin_Feature::setPreview(const boost::shared_ptr<GeomAPI_Shape>& theShape)
 {
   myPreview = theShape;
@@ -46,3 +19,31 @@ const boost::shared_ptr<GeomAPI_Shape>& SketchPlugin_Feature::getPreview() const
 {
   return myPreview;
 }
+
+SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
+{
+  if (!mySketch) {
+    // find sketch that references to this feature
+    int aSketches = document()->size("Construction");
+    for(int a = 0; a < aSketches && !mySketch; a++) {
+      boost::shared_ptr<ModelAPI_Object> anObj = 
+        boost::dynamic_pointer_cast<ModelAPI_Object>(document()->feature("Construction", a));
+      if (anObj) {
+        boost::shared_ptr<SketchPlugin_Sketch> aSketch = 
+          boost::dynamic_pointer_cast<SketchPlugin_Sketch>(anObj->featureRef());
+        if (aSketch) {
+          std::list<boost::shared_ptr<ModelAPI_Feature> > aList = 
+            aSketch->data()->reflist(SKETCH_ATTR_FEATURES)->list();
+          std::list<boost::shared_ptr<ModelAPI_Feature> >::iterator aSub = aList.begin();
+          for(; aSub != aList.end(); aSub++) {
+            if ((*aSub)->data()->isEqual(data())) {
+              mySketch = aSketch.get();
+              break;
+            }
+          }
+        }
+      }
+    }
+  }
+  return mySketch;
+}
index d83e21cceb25894ab2b64b1709dd815a6d6ba239..db6a6d6607aff088a251a6e4f6e43fb30d71b82e 100644 (file)
@@ -42,11 +42,9 @@ protected:
   /// Sets the higher-level feature for the sub-feature (sketch for line)
   void setSketch(SketchPlugin_Sketch* theSketch) {mySketch = theSketch;}
   /// Returns the sketch of this feature
-  SketchPlugin_Sketch* sketch() {return mySketch;}
+  SketchPlugin_Sketch* sketch();
   /// initializes mySketch
   SketchPlugin_Feature();
-  /// Sets the data manager of an object and here initializes mySketch field
-  SKETCHPLUGIN_EXPORT virtual void setData(boost::shared_ptr<ModelAPI_Data> theData);
 
   friend class SketchPlugin_Sketch;