X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConstructionPlugin%2FConstructionPlugin_Plugin.cpp;h=a825c5608e0a96cc95a2a453623bc65088706c6e;hb=fdcf8f3f834a16b890b97f6b7668ab06b616d5ba;hp=5c1f39f2f8de2dfc5bc87f1df52371d2fbb9dff3;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/ConstructionPlugin_Plugin.cpp b/src/ConstructionPlugin/ConstructionPlugin_Plugin.cpp index 5c1f39f2f..a825c5608 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Plugin.cpp +++ b/src/ConstructionPlugin/ConstructionPlugin_Plugin.cpp @@ -1,5 +1,7 @@ #include "ConstructionPlugin_Plugin.h" #include "ConstructionPlugin_Point.h" +#include "ConstructionPlugin_Extrusion.h" + #include #include @@ -18,6 +20,8 @@ boost::shared_ptr ConstructionPlugin_Plugin::createFeature(str { if (theFeatureID == "Point") { return boost::shared_ptr(new ConstructionPlugin_Point); + } else if (theFeatureID == "Extrusion") { + return boost::shared_ptr(new ConstructionPlugin_Extrusion); } // feature of such kind is not found return boost::shared_ptr();