Salome HOME
Refactoring: static constants are replaced by inline functions in:
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Remove.h
1 // File:        PartSetPlugin_Remove.h
2 // Created:     20 May 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef PartSetPlugin_Remove_HeaderFile
6 #define PartSetPlugin_Remove_HeaderFile
7
8 #include "PartSetPlugin.h"
9 #include <ModelAPI_Feature.h>
10
11 /**\class PartSetPlugin_Remove
12  * \ingroup DataModel
13  * \brief Feature for creation of the new part in PartSet.
14  */
15 class PartSetPlugin_Remove: public ModelAPI_Feature
16 {
17 public:
18   /// Remove kind
19   inline static const std::string& ID()
20   {
21     static const std::string MY_REMOVE_KIND("Remove");
22     return MY_REMOVE_KIND;
23   }
24   /// Returns the kind of a feature
25   PARTSETPLUGIN_EXPORT virtual const std::string& getKind() 
26   {static std::string MY_KIND = PartSetPlugin_Remove::ID(); return MY_KIND;}
27
28   /// Returns to which group in the document must be added feature
29   PARTSETPLUGIN_EXPORT virtual const std::string& getGroup() 
30   {static std::string MY_GROUP = "Parts"; return MY_GROUP;}
31
32   /// Request for initialization of data model of the feature: adding all attributes
33   PARTSETPLUGIN_EXPORT virtual void initAttributes() {}
34
35   /// Not normal feature that stored in the tree
36   PARTSETPLUGIN_EXPORT virtual bool isAction() {return true;}
37
38   /// Performs the "remove"
39   PARTSETPLUGIN_EXPORT virtual void execute();
40
41   /// Use plugin manager for features creation
42   PartSetPlugin_Remove() {}
43 };
44
45 #endif