X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FSketchPlugin_Feature.cpp;h=5842df8a0968939413d98fd409be090d7e116fa9;hb=64fc7e4fdd63997ec7a502b233ef5f88186d5bbb;hp=b89f5d42563a44a380f72f4cdbc9f7fd1c62c1af;hpb=2e5353958b8e5a0a7d8bc3903f522b5564df8d48;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/SketchPlugin_Feature.cpp b/src/SketchPlugin/SketchPlugin_Feature.cpp index b89f5d425..5842df8a0 100644 --- a/src/SketchPlugin/SketchPlugin_Feature.cpp +++ b/src/SketchPlugin/SketchPlugin_Feature.cpp @@ -8,20 +8,21 @@ #include #include +/// It is important. +/// +/// Before writing a new method implementation in this file, please check the next rule: +/// exported public methods must not be implemented in this source file. They should be inline and +/// placed in the header file. +/// Because it leads to the runtime problem on the Linux OS. +/// +/// The reason is that this is an abstract interface. An interface of this class can be used in +/// outside libraries through casting without a link to the current library. + SketchPlugin_Feature::SketchPlugin_Feature() { mySketch = 0; } -void SketchPlugin_Feature::erase() -{ - SketchPlugin_Sketch* aSketch = sketch(); - if (aSketch) - aSketch->removeFeature(this); - - ModelAPI_Feature::erase(); -} - SketchPlugin_Sketch* SketchPlugin_Feature::sketch() { if (!mySketch) {