X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Remove.h;h=5f3e354255b220690d8a6d05d664be80ed230c7f;hb=f2ced587983e4e9e82c0d16dff6447fb01a5beab;hp=a24cc263281e9092616e2ba5cd4309629f8e0063;hpb=3985b767e74385e51d1b503d2c97d3bb1e3f6faa;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Remove.h b/src/PartSetPlugin/PartSetPlugin_Remove.h index a24cc2632..5f3e35425 100644 --- a/src/PartSetPlugin/PartSetPlugin_Remove.h +++ b/src/PartSetPlugin/PartSetPlugin_Remove.h @@ -1,20 +1,22 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Remove.h // Created: 20 May 2014 // Author: Mikhail PONIKAROV -#ifndef PartSetPlugin_Remove_HeaderFile -#define PartSetPlugin_Remove_HeaderFile +#ifndef PartSetPlugin_Remove_H_ +#define PartSetPlugin_Remove_H_ #include "PartSetPlugin.h" #include /**\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() { @@ -22,24 +24,37 @@ public: return MY_REMOVE_KIND; } /// Returns the kind of a feature - PARTSETPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = PartSetPlugin_Remove::ID(); 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() + { + } /// 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