Salome HOME
Revert "Fix Warning in GeomAPI_Trsf"
[modules/shaper.git] / src / GeomAPI / GeomAPI_Vertex.h
index 3b517a8632a0e61b4a894093058d6eadcfe247c7..9baf0dcdc08bf4a8572ff5b2168478b9d005161e 100644 (file)
@@ -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<GeomAPI_Shape>& theShape);
 
   /// Returns the first vertex coordinates of the edge 
+  GEOMAPI_EXPORT 
   std::shared_ptr<GeomAPI_Pnt> point();
 
   /// Returns true if the current edge is geometrically equal to the given edge
+  GEOMAPI_EXPORT 
   bool isEqual(const std::shared_ptr<GeomAPI_Shape> theVert) const;
 };