X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Plugin.h;h=b23bf3f1244d42e7def9a94af7afd743a97e4d9c;hb=031fb5e7c551e695afa72a9de299f118a40d8d88;hp=f26cab7b0d794df8c6c0a8921f065d3e94edb707;hpb=b0d2c2eb9107fe9e69b321bfc0ecba9cb5eab961;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Plugin.h b/src/ModelAPI/ModelAPI_Plugin.h index f26cab7b0..b23bf3f12 100644 --- a/src/ModelAPI/ModelAPI_Plugin.h +++ b/src/ModelAPI/ModelAPI_Plugin.h @@ -1,9 +1,11 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_Plugin.hxx // 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 @@ -18,14 +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 std::shared_ptr createFeature( - std::string theFeatureID, const bool theAddToDoc) = 0; + virtual std::shared_ptr createFeature(std::string theFeatureID) = 0; -protected: - /// Is needed for python wrapping by swig - ModelAPI_Plugin() {}; + /// To virtually destroy the fields of successors + virtual ~ModelAPI_Plugin() + { + } }; #endif