X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_Plugin.h;h=5222b4c7b5edcd23582cdffbd6933428784cb4a7;hb=a5a4efb5a57703a634a60c097b6ab9179a04e6d4;hp=fb65e0b142ecf3426cfd3094a94ac7b8b8b0f87e;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_Plugin.h b/src/ModelAPI/ModelAPI_Plugin.h index fb65e0b14..5222b4c7b 100644 --- a/src/ModelAPI/ModelAPI_Plugin.h +++ b/src/ModelAPI/ModelAPI_Plugin.h @@ -2,8 +2,8 @@ // 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,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