]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ConstructionPlugin/ConstructionPlugin_Point.h
Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / ConstructionPlugin / ConstructionPlugin_Point.h
index a5f183690e4e960ae6b5feda5570a26c3003f0e1..63a13422614b10b26b218487c5657141b14d41fd 100644 (file)
@@ -22,16 +22,22 @@ const std::string POINT_ATTR_Z = "z";
  * \ingroup DataModel
  * \brief Feature for creation of the new part in PartSet.
  */
-class ConstructionPlugin_Point: public ModelAPI_Feature
+class ConstructionPlugin_Point : public ModelAPI_Feature
 {
-public:
+ public:
   /// Returns the kind of a feature
-  CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getKind() 
-  {static std::string MY_KIND = CONSTRUCTION_POINT_KIND; return MY_KIND;}
+  CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getKind()
+  {
+    static std::string MY_KIND = CONSTRUCTION_POINT_KIND;
+    return MY_KIND;
+  }
 
   /// Returns to which group in the document must be added feature
-  CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getGroup() 
-  {static std::string MY_GROUP = "Construction"; return MY_GROUP;}
+  CONSTRUCTIONPLUGIN_EXPORT virtual const std::string& getGroup()
+  {
+    static std::string MY_GROUP = "Construction";
+    return MY_GROUP;
+  }
 
   /// Creates a new part document if needed
   CONSTRUCTIONPLUGIN_EXPORT virtual void execute();