Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ConstructionPlugin / ConstructionPlugin_Plugin.cpp
index d420b21104827a33f6e25cf279d0ba2cb77db4c5..6b0d729a44c68919eb1cdfe1fe29276cf9de4037 100644 (file)
@@ -1,6 +1,5 @@
 #include "ConstructionPlugin_Plugin.h"
 #include "ConstructionPlugin_Point.h"
-#include "ConstructionPlugin_Extrusion.h"
 
 #include <ModelAPI_PluginManager.h>
 #include <ModelAPI_Document.h>
@@ -20,8 +19,6 @@ FeaturePtr ConstructionPlugin_Plugin::createFeature(string theFeatureID)
 {
   if (theFeatureID == CONSTRUCTION_POINT_KIND) {
     return FeaturePtr(new ConstructionPlugin_Point);
-  } else if (theFeatureID == CONSTRUCTION_EXTRUSION_KIND) {
-    return FeaturePtr(new ConstructionPlugin_Extrusion);
   }
   // feature of such kind is not found
   return FeaturePtr();