Salome HOME
Put groups to the separated plugin: Collection
[modules/shaper.git] / src / PrimitivesPlugin / PrimitivesPlugin_Plugin.cpp
index b4281ea41e4a3fe7eb45461b39bf38327267ec42..bf3e1716c034b8933e2c194c13d556d16debc16e 100644 (file)
@@ -7,17 +7,12 @@
 #include <PrimitivesPlugin_Plugin.h>
 
 #include <PrimitivesPlugin_Box.h>
-
 #include <ModelAPI_Session.h>
 
 #include <string>
-
 #include <memory>
-
 #include <iostream>
 
-using namespace std;
-
 // the only created instance of this plugin
 static PrimitivesPlugin_Plugin* MY_PRIMITIVES_INSTANCE = new PrimitivesPlugin_Plugin();
 
@@ -27,7 +22,7 @@ PrimitivesPlugin_Plugin::PrimitivesPlugin_Plugin()
   ModelAPI_Session::get()->registerPlugin(this);
 }
 
-FeaturePtr PrimitivesPlugin_Plugin::createFeature(string theFeatureID)
+FeaturePtr PrimitivesPlugin_Plugin::createFeature(std::string theFeatureID)
 {
   if (theFeatureID == PrimitivesPlugin_Box::ID()) {
     return FeaturePtr(new PrimitivesPlugin_Box);