X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Vertex.h;h=9baf0dcdc08bf4a8572ff5b2168478b9d005161e;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=3b517a8632a0e61b4a894093058d6eadcfe247c7;hpb=534832230a29726c5bf6f438f7630f9058d38ba9;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Vertex.h b/src/GeomAPI/GeomAPI_Vertex.h index 3b517a863..9baf0dcdc 100644 --- a/src/GeomAPI/GeomAPI_Vertex.h +++ b/src/GeomAPI/GeomAPI_Vertex.h @@ -16,19 +16,23 @@ class GeomAPI_Pnt; * \brief Interface to the vertex object */ -class GEOMAPI_EXPORT GeomAPI_Vertex : public GeomAPI_Shape +class GeomAPI_Vertex : public GeomAPI_Shape { public: /// Creation of empty (null) shape + GEOMAPI_EXPORT GeomAPI_Vertex(); /// Creation of edge by the edge-shape + GEOMAPI_EXPORT GeomAPI_Vertex(const std::shared_ptr& theShape); /// Returns the first vertex coordinates of the edge + GEOMAPI_EXPORT std::shared_ptr point(); /// Returns true if the current edge is geometrically equal to the given edge + GEOMAPI_EXPORT bool isEqual(const std::shared_ptr theVert) const; };