Salome HOME
Issue #1015: The validate icon must be greyed and inactive instead of red and active
[modules/shaper.git] / src / GeomAPI / GeomAPI_IPresentable.h
index 34868048a92877e79b8617abb5ad85bba607c8c1..db3d12b4ae73ea34100202a4833613e8e9407bd2 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        GeomAPI_IPresentable.hxx
 // Created:     17 July 2014
 // Author:      Vitaly SMETANNIKOV
 class GeomAPI_IPresentable
 {
  public:
+  GEOMAPI_EXPORT virtual ~GeomAPI_IPresentable();
   /** Returns the AIS preview
    *   \param thePrevious - defines a presentation if it was created previously
    */
   virtual AISObjectPtr getAISObject(AISObjectPtr thePrevious) = 0;
 };
 
-typedef boost::shared_ptr<GeomAPI_IPresentable> GeomPresentablePtr;
+typedef std::shared_ptr<GeomAPI_IPresentable> GeomPresentablePtr;
 
 #endif