X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Plugin.h;h=b23bf3f1244d42e7def9a94af7afd743a97e4d9c;hb=b52164791e6cc6cdc2c009c7ef6667d9f476d3aa;hp=31795c3f15c57590308904dd3a950129bfe5c741;hpb=96ff1d1fb2acb842cee193f15492de81060a1d58;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Plugin.h b/src/ModelAPI/ModelAPI_Plugin.h index 31795c3f1..b23bf3f12 100644 --- a/src/ModelAPI/ModelAPI_Plugin.h +++ b/src/ModelAPI/ModelAPI_Plugin.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Plugin.hxx // Created: 31 Mar 2014 // Author: Mikhail PONIKAROV @@ -7,7 +9,7 @@ #include "ModelAPI.h" #include -#include +#include class ModelAPI_Feature; @@ -18,16 +20,14 @@ 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; + virtual std::shared_ptr createFeature(std::string theFeatureID) = 0; /// To virtually destroy the fields of successors - virtual ~ModelAPI_Plugin() {} - -protected: - /// Is needed for python wrapping by swig - ModelAPI_Plugin() {}; + virtual ~ModelAPI_Plugin() + { + } }; #endif