X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Plugin.h;h=834c7c8a306b487271467ca9bef55574edb1475f;hb=7b4a6a2a335d41a647e0f6a6becb7c23df042be1;hp=ff577f79a3adec8e2003a43ece502a805e536255;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Plugin.h b/src/PartSetPlugin/PartSetPlugin_Plugin.h index ff577f79a..834c7c8a3 100644 --- a/src/PartSetPlugin/PartSetPlugin_Plugin.h +++ b/src/PartSetPlugin/PartSetPlugin_Plugin.h @@ -1,23 +1,40 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Plugin.hxx // Created: 31 Mar 2014 // Author: Mikhail PONIKAROV -#ifndef PartSetPlugin_Plugin_HeaderFile -#define PartSetPlugin_Plugin_HeaderFile +#ifndef PartSetPlugin_Plugin_H_ +#define PartSetPlugin_Plugin_H_ + +#include +#include +#include +#include +#include -#include "PartSetPlugin.h" -#include "ModelAPI_Plugin.h" +#include -class PARTSETPLUGIN_EXPORT PartSetPlugin_Plugin: public ModelAPI_Plugin +/**\class PartSetPlugin_Plugin + * \ingroup Plugins + * \brief The main class for management the part set operations as plugin. + */ +class PARTSETPLUGIN_EXPORT PartSetPlugin_Plugin : public ModelAPI_Plugin, + public Events_Listener { -public: + 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 PartSetPlugin_Plugin(); + + //! Redefinition of Events_Listener method + virtual void processEvent(const std::shared_ptr& theMessage); + //! Performs the chenges of enabled/disabled state in the toolbar + //! due to the current state of the application. + std::shared_ptr getFeaturesState(); }; #endif