X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.h;h=5b7d63e4947d53269f7ef29a52995e1916ef59b9;hb=0b503091623876eda1ae9214e32f8831ef03778b;hp=f1ee4306421704bdbd9ddf2af2a055113f15e9b9;hpb=cf6ecce56482c1e15c6381d76b553004f87d3dd3;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.h b/src/PartSetPlugin/PartSetPlugin_Part.h index f1ee43064..5b7d63e49 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.h +++ b/src/PartSetPlugin/PartSetPlugin_Part.h @@ -1,30 +1,41 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: PartSetPlugin_Part.h // Created: 27 Mar 2014 // Author: Mikhail PONIKAROV -#ifndef PartSetPlugin_Part_HeaderFile -#define PartSetPlugin_Part_HeaderFile +#ifndef PartSetPlugin_Part_H_ +#define PartSetPlugin_Part_H_ #include "PartSetPlugin.h" #include -/// part reference attribute -const std::string PART_ATTR_DOC_REF = "PartDocument"; - /**\class PartSetPlugin_Part - * \ingroup DataModel + * \ingroup Plugins * \brief Feature for creation of the new part in PartSet. */ -class PartSetPlugin_Part: public ModelAPI_Feature +class PartSetPlugin_Part : public ModelAPI_Feature { -public: + public: + /// Part kind + inline static const std::string& ID() + { + static const std::string MY_PART_KIND("Part"); + return MY_PART_KIND; + } /// Returns the kind of a feature - PARTSETPLUGIN_EXPORT virtual const std::string& getKind() - {static std::string MY_KIND = "Part"; return MY_KIND;} + PARTSETPLUGIN_EXPORT virtual const std::string& getKind() + { + static std::string MY_KIND = PartSetPlugin_Part::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; + } /// Creates a new part document if needed PARTSETPLUGIN_EXPORT virtual void execute(); @@ -34,6 +45,12 @@ public: PARTSETPLUGIN_EXPORT virtual std::shared_ptr documentToAdd(); + /// Returns true if this feature must be displayed in the history (top level of Part tree) + PARTSETPLUGIN_EXPORT virtual bool isInHistory() + { + return false; + } + /// Use plugin manager for features creation PartSetPlugin_Part(); };