]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/GeomDataAPI/GeomDataAPI_Point.h
Salome HOME
Boost has been removed from code
[modules/shaper.git] / src / GeomDataAPI / GeomDataAPI_Point.h
index 08ee73951847765c0baad42f1d07d06bc54ad379..cc5f4f6f09a4e892fc6175df6c7cbfc24fe3a91d 100644 (file)
@@ -21,7 +21,7 @@ class GeomDataAPI_Point : public ModelAPI_Attribute
   /// Defines the double value
   virtual void setValue(const double theX, const double theY, const double theZ) = 0;
   /// Defines the point
-  virtual void setValue(const boost::shared_ptr<GeomAPI_Pnt>& thePoint) = 0;
+  virtual void setValue(const std::shared_ptr<GeomAPI_Pnt>& thePoint) = 0;
 
   /// Returns the X double value
   virtual double x() const = 0;
@@ -30,7 +30,7 @@ class GeomDataAPI_Point : public ModelAPI_Attribute
   /// Returns the Z double value
   virtual double z() const = 0;
   /// Returns the 3D point
-  virtual boost::shared_ptr<GeomAPI_Pnt> pnt() = 0;
+  virtual std::shared_ptr<GeomAPI_Pnt> pnt() = 0;
 
   /// Returns the type of this class of attributes
   static inline std::string type()