Salome HOME
Adjust test case to avoid instability.
[modules/shaper.git] / src / BuildAPI / BuildAPI_Edge.h
index 143d1fe75c7befbc96674c5381d46f400e6d66e7..11a7fa90210d6a424a649fa964899287c22a325e 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -12,9 +12,9 @@
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef BuildAPI_Edge_H_
@@ -44,13 +44,25 @@ public:
   explicit BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature,
                          const std::list<ModelHighAPI_Selection>& theBaseObjects);
 
+  /// Constructor by points.
+  BUILDAPI_EXPORT
+  explicit BuildAPI_Edge(const std::shared_ptr<ModelAPI_Feature>& theFeature,
+                         const ModelHighAPI_Selection& theFirstPoint,
+                         const ModelHighAPI_Selection& theSecondPoint);
+
   /// Destructor.
   BUILDAPI_EXPORT
   virtual ~BuildAPI_Edge();
 
-  INTERFACE_1(BuildPlugin_Edge::ID(),
+  INTERFACE_4(BuildPlugin_Edge::ID(),
               baseObjects, BuildPlugin_Edge::BASE_OBJECTS_ID(),
-              ModelAPI_AttributeSelectionList, /** Base objects */)
+              ModelAPI_AttributeSelectionList, /** Base objects */,
+              creationMethod, BuildPlugin_Edge::CREATION_METHOD(),
+              ModelAPI_AttributeString, /** Creation method */,
+              firstPoint, BuildPlugin_Edge::FIRST_POINT(),
+              ModelAPI_AttributeSelection, /** First point */,
+              secondPoint, BuildPlugin_Edge::SECOND_POINT(),
+              ModelAPI_AttributeSelection, /** Second point */)
 
   /// Modify base attribute of the feature.
   BUILDAPI_EXPORT
@@ -69,5 +81,11 @@ typedef std::shared_ptr<BuildAPI_Edge> EdgePtr;
 BUILDAPI_EXPORT
 EdgePtr addEdge(const std::shared_ptr<ModelAPI_Document>& thePart,
                 const std::list<ModelHighAPI_Selection>& theBaseObjects);
+/// \ingroup CPPHighAPI
+/// \brief Create Edge feature.
+BUILDAPI_EXPORT
+EdgePtr addEdge(const std::shared_ptr<ModelAPI_Document>& thePart,
+                const ModelHighAPI_Selection& theFirstPoint,
+                const ModelHighAPI_Selection& theSecondPoint);
 
 #endif // BuildAPI_Edge_H_