]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Compilation fix
authordbv <dbv@opencascade.com>
Wed, 15 Jun 2016 11:46:46 +0000 (14:46 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Fri, 17 Jun 2016 11:41:10 +0000 (14:41 +0300)
src/ConstructionAPI/ConstructionAPI_Axis.h

index a473aeffb44976aecbe2ef7932da1aff09930c6b..49077c78b136eb3ada3bd50d1a62bd8dc2df3564 100644 (file)
@@ -82,20 +82,23 @@ typedef std::shared_ptr<ConstructionAPI_Axis> AxisPtr;
  * \brief Create Axis feature
  */
 CONSTRUCTIONAPI_EXPORT
-AxisPtr addAxis(const ModelHighAPI_Selection & thePoint1,
+AxisPtr addAxis(const std::shared_ptr<ModelAPI_Document> & thePart,
+                const ModelHighAPI_Selection & thePoint1,
                 const ModelHighAPI_Selection & thePoint2);
 
 /**\ingroup CPPHighAPI
  * \brief Create Axis feature
  */
 CONSTRUCTIONAPI_EXPORT
-AxisPtr addAxis(const ModelHighAPI_Selection & theCylindricalFace);
+AxisPtr addAxis(const std::shared_ptr<ModelAPI_Document> & thePart,
+                const ModelHighAPI_Selection & theCylindricalFace);
 
 /**\ingroup CPPHighAPI
  * \brief Create Axis feature
  */
 CONSTRUCTIONAPI_EXPORT
-AxisPtr addAxis(const ModelHighAPI_Selection & thePoint,
+AxisPtr addAxis(const std::shared_ptr<ModelAPI_Document> & thePart,
+                const ModelHighAPI_Selection & thePoint,
                 const ModelHighAPI_Double & theX,
                 const ModelHighAPI_Double & theY,
                 const ModelHighAPI_Double & theZ);