X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Plugin.h;h=5222b4c7b5edcd23582cdffbd6933428784cb4a7;hb=67e9407be59cbfa36082e09f077f9da274c25bfe;hp=31795c3f15c57590308904dd3a950129bfe5c741;hpb=2c4f7de06341fa7af89f47ba405fe188f13e3600;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Plugin.h b/src/ModelAPI/ModelAPI_Plugin.h index 31795c3f1..5222b4c7b 100644 --- a/src/ModelAPI/ModelAPI_Plugin.h +++ b/src/ModelAPI/ModelAPI_Plugin.h @@ -18,16 +18,21 @@ class ModelAPI_Feature; class MODELAPI_EXPORT ModelAPI_Plugin { -public: + public: /// Creates the feature object of this plugin by the feature string ID virtual boost::shared_ptr createFeature(std::string theFeatureID) = 0; /// To virtually destroy the fields of successors - virtual ~ModelAPI_Plugin() {} + virtual ~ModelAPI_Plugin() + { + } -protected: + protected: /// Is needed for python wrapping by swig - ModelAPI_Plugin() {}; + ModelAPI_Plugin() + { + } + ; }; #endif