]> SALOME platform Git repositories - modules/shaper.git/blob - src/PartSetPlugin/PartSetPlugin_NewPart.hxx
Salome HOME
Added object, attribute and data model organization in the document.
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_NewPart.hxx
1 // File:        PartSetPlugin_NewPart.hxx
2 // Created:     27 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef PartSetPlugin_NewPart_HeaderFile
6 #define PartSetPlugin_NewPart_HeaderFile
7
8 #include "PartSetPlugin.h"
9 #include <ModelAPI_Feature.h>
10
11 /**\class PartSetPlugin_NewPart
12  * \ingroup DataModel
13  * \brief Feature for creation of the new part in PartSet.
14  */
15
16 class PartSetPlugin_NewPart: public ModelAPI_Feature
17 {
18 public:
19   /// Returns the kind of a feature
20   PARTSETPLUGIN_EXPORT virtual std::string GetKind() {return "new_part";}
21
22   /// Use plugin manager for features creation
23   PartSetPlugin_NewPart();
24 };
25
26 #endif