Salome HOME
Update copyrights
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Remove.h
index 87b7e258ce768a0524cdddb9cd9caa1e50e7dcd9..fab83ee06a63b87e603bcdd4e054db480c354d2e 100644 (file)
@@ -1,42 +1,75 @@
-// File:        PartSetPlugin_Remove.h
-// Created:     20 May 2014
-// Author:      Mikhail PONIKAROV
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
-#ifndef PartSetPlugin_Remove_HeaderFile
-#define PartSetPlugin_Remove_HeaderFile
+#ifndef PartSetPlugin_Remove_H_
+#define PartSetPlugin_Remove_H_
 
 #include "PartSetPlugin.h"
 #include <ModelAPI_Feature.h>
 
-/// Extrusion kind
-const std::string PARTSET_REMOVE_KIND("Remove");
-
 /**\class PartSetPlugin_Remove
- * \ingroup DataModel
+ * \ingroup Plugins
  * \brief Feature for creation of the new part in PartSet.
  */
-class PartSetPlugin_Remove: public ModelAPI_Feature
+class PartSetPlugin_Remove : public ModelAPI_Feature
 {
-public:
+ public:
+  /// Remove kind
+  inline static const std::string& ID()
+  {
+    static const std::string MY_REMOVE_KIND("Remove");
+    return MY_REMOVE_KIND;
+  }
+//LCOV_EXCL_START
   /// Returns the kind of a feature
-  PARTSETPLUGIN_EXPORT virtual const std::string& getKind() 
-  {static std::string MY_KIND = PARTSET_REMOVE_KIND; return MY_KIND;}
+  PARTSETPLUGIN_EXPORT virtual const std::string& getKind()
+  {
+    static std::string MY_KIND = PartSetPlugin_Remove::ID();
+    return MY_KIND;
+  }
 
   /// Returns to which group in the document must be added feature
-  PARTSETPLUGIN_EXPORT virtual const std::string& getGroup() 
-  {static std::string MY_GROUP = "Parts"; return MY_GROUP;}
+  PARTSETPLUGIN_EXPORT virtual const std::string& getGroup()
+  {
+    static std::string MY_GROUP = "Parts";
+    return MY_GROUP;
+  }
 
   /// Request for initialization of data model of the feature: adding all attributes
-  PARTSETPLUGIN_EXPORT virtual void initAttributes() {}
+  PARTSETPLUGIN_EXPORT virtual void initAttributes()
+  {
+  }
+//LCOV_EXCL_STOP
 
   /// Not normal feature that stored in the tree
-  PARTSETPLUGIN_EXPORT virtual bool isAction() {return true;}
+  PARTSETPLUGIN_EXPORT virtual bool isAction()
+  {
+    return true;
+  }
 
   /// Performs the "remove"
   PARTSETPLUGIN_EXPORT virtual void execute();
 
   /// Use plugin manager for features creation
-  PartSetPlugin_Remove() {}
+  PartSetPlugin_Remove()
+  {
+  }
 };
 
 #endif