]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/SketchPlugin/SketchPlugin_Feature.h
Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Feature.h
index a440dbdfdd2a353e6f6c74530c5a990a277344da..964abe80e4f8b97c299afb162abcfbb95146b044 100644 (file)
 class SketchPlugin_Feature: public ModelAPI_Feature
 {
 public:
- SKETCHPLUGIN_EXPORT virtual const std::shared_ptr<GeomAPI_Shape>& preview() = 0;
+ SKETCHPLUGIN_EXPORT virtual const boost::shared_ptr<GeomAPI_Shape>& preview() = 0;
 
 protected:
-  void setPreview(const std::shared_ptr<GeomAPI_Shape>& theShape); ///< the preview shape
+  void setPreview(const boost::shared_ptr<GeomAPI_Shape>& theShape); ///< the preview shape
 
 private:
-  std::shared_ptr<GeomAPI_Shape> myPreview; ///< the preview shape
+  boost::shared_ptr<GeomAPI_Shape> myPreview; ///< the preview shape
 };
 
 #endif