Salome HOME
Meet the coding style (line length <= 100)
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Placement.h
index 46acd79e29fe1b3352aac69f0c19db920cac7736..96bac5e24e0ac18492d59aabc1f0b8f1c8e56677 100644 (file)
@@ -42,16 +42,16 @@ class FeaturesPlugin_Placement : public ModelAPI_Feature
   }
 
   /// attribute name of referenced object
-  inline static const std::string& START_FACE_ID()
+  inline static const std::string& START_SHAPE_ID()
   {
-    static const std::string MY_START_FACE_ID("placement_start_face");
-    return MY_START_FACE_ID;
+    static const std::string MY_START_SHAPE_ID("placement_start_shape");
+    return MY_START_SHAPE_ID;
   }
   /// attribute name of attractable face
-  inline static const std::string& END_FACE_ID()
+  inline static const std::string& END_SHAPE_ID()
   {
-    static const std::string MY_END_FACE_ID("placement_end_face");
-    return MY_END_FACE_ID;
+    static const std::string MY_END_SHAPE_ID("placement_end_shape");
+    return MY_END_SHAPE_ID;
   }
   /// attribute name of flag of reverse direction
   inline static const std::string& REVERSE_ID()
@@ -83,9 +83,9 @@ class FeaturesPlugin_Placement : public ModelAPI_Feature
   FeaturesPlugin_Placement();
 private:
   /// Load Naming data structure of the feature to the document
-  void LoadNamingDS(GeomAlgoAPI_Transform& theTransformAlgo,
+  void loadNamingDS(GeomAlgoAPI_Transform& theTransformAlgo,
                     std::shared_ptr<ModelAPI_ResultBody> theResultBody,
-                    std::shared_ptr<GeomAPI_Shape> theSlaveObject);
+                    std::shared_ptr<GeomAPI_Shape> theBaseShape);
 };
 
 #endif