X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Plugin.cpp;h=7dd5081f47508f8292823cdbe610a001b27d7694;hb=6d0364ff4f55e3cd5087063b0895635c03e78635;hp=c84ddf680f65bf0731af7932c38e866c607d27d7;hpb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Plugin.cpp b/src/FeaturesPlugin/FeaturesPlugin_Plugin.cpp index c84ddf680..7dd5081f4 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Plugin.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Plugin.cpp @@ -1,24 +1,39 @@ -#include "FeaturesPlugin_Plugin.h" -#include "FeaturesPlugin_Extrusion.h" +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> -#include -#include +#include + +#include +#include +#include +#include + +#include + +#include + +#include using namespace std; // the only created instance of this plugin -static FeaturesPlugin_Plugin* MY_INSTANCE = new FeaturesPlugin_Plugin(); +static FeaturesPlugin_Plugin* MY_FEATURES_INSTANCE = new FeaturesPlugin_Plugin(); FeaturesPlugin_Plugin::FeaturesPlugin_Plugin() { // register this plugin - ModelAPI_PluginManager::get()->registerPlugin(this); + ModelAPI_Session::get()->registerPlugin(this); } FeaturePtr FeaturesPlugin_Plugin::createFeature(string theFeatureID) { if (theFeatureID == FeaturesPlugin_Extrusion::ID()) { return FeaturePtr(new FeaturesPlugin_Extrusion); + } else if (theFeatureID == FeaturesPlugin_Boolean::ID()) { + return FeaturePtr(new FeaturesPlugin_Boolean); + } else if (theFeatureID == FeaturesPlugin_Group::ID()) { + return FeaturePtr(new FeaturesPlugin_Group); + } else if (theFeatureID == FeaturesPlugin_Placement::ID()) { + return FeaturePtr(new FeaturesPlugin_Placement); } // feature of such kind is not found return FeaturePtr();