X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FModelAPI%2FModelAPI_Plugin.h;h=de421e726c29c176b12a5adf2ababa5aee625712;hb=e9f48e35e26dfce648e2f6ecbe1e43c51ba32a7e;hp=fb65e0b142ecf3426cfd3094a94ac7b8b8b0f87e;hpb=6654a921211670c15a79a997ca666a174fe8a6f6;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Plugin.h b/src/ModelAPI/ModelAPI_Plugin.h index fb65e0b14..de421e726 100644 --- a/src/ModelAPI/ModelAPI_Plugin.h +++ b/src/ModelAPI/ModelAPI_Plugin.h @@ -1,13 +1,15 @@ -// File: ModelAPI_Plugin.hxx +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + +// File: ModelAPI_Plugin.h // Created: 31 Mar 2014 // Author: Mikhail PONIKAROV -#ifndef ModelAPI_Plugin_HeaderFile -#define ModelAPI_Plugin_HeaderFile +#ifndef ModelAPI_Plugin_H_ +#define ModelAPI_Plugin_H_ #include "ModelAPI.h" #include -#include +#include class ModelAPI_Feature; @@ -15,19 +17,14 @@ class ModelAPI_Feature; * \ingroup DataModel * \brief Interface common for any plugin: allows to use plugin by the plugins manager. */ - 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