X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConstructionPlugin%2FConstructionPlugin_Plugin.h;h=a7ec72fc43e56b3ff5c4935d27ded5f7e2ad6403;hb=f387a286673e6be6e5c065f3bbf3c19ed5981a30;hp=0201b40a36715f6cc468e03bc2eaed4e7706c1d4;hpb=6654a921211670c15a79a997ca666a174fe8a6f6;p=modules%2Fshaper.git diff --git a/src/ConstructionPlugin/ConstructionPlugin_Plugin.h b/src/ConstructionPlugin/ConstructionPlugin_Plugin.h index 0201b40a3..a7ec72fc4 100644 --- a/src/ConstructionPlugin/ConstructionPlugin_Plugin.h +++ b/src/ConstructionPlugin/ConstructionPlugin_Plugin.h @@ -1,22 +1,27 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ConstructionPlugin_Plugin.hxx // Created: 31 Mar 2014 // Author: Mikhail PONIKAROV -#ifndef ConstructionPlugin_Plugin_HeaderFile -#define ConstructionPlugin_Plugin_HeaderFile - +#ifndef ConstructionPlugin_Plugin_H_ +#define ConstructionPlugin_Plugin_H_ #include "ConstructionPlugin.h" #include "ModelAPI_Plugin.h" +#include "ModelAPI_Feature.h" -class CONSTRUCTIONPLUGIN_EXPORT ConstructionPlugin_Plugin: public ModelAPI_Plugin +/**\class ConstructionPlugin_Plugin + * \ingroup Plugins + * \brief The main class for management the construction features as plugin. + */ +class CONSTRUCTIONPLUGIN_EXPORT ConstructionPlugin_Plugin : public ModelAPI_Plugin { public: /// Creates the feature object of this plugin by the feature string ID - virtual boost::shared_ptr createFeature(std::string theFeatureID); + virtual FeaturePtr createFeature(std::string theFeatureID); -public: - /// Is needed for python wrapping by swig + /// Default constructor ConstructionPlugin_Plugin(); };