Salome HOME
bos #16517 Implement method CanOpen() to check that study file is accessible and...
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_definitions.hxx
index 4a8446a11d90017b90406a04fe8e93dfe55e90f9..0e009a9979d7adf0dd88b3d664e5c6ecea8f36ac 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2019  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -45,12 +45,12 @@ public:
       {
         boost::shared_ptr<T>::reset(p);
       }
-  
+
   template<class Y>
     clt_shared_ptr(clt_shared_ptr<Y> const & r):
-      boost::shared_ptr<T>(r,boost::detail::dynamic_cast_tag())
+      boost::shared_ptr<T>(boost::dynamic_pointer_cast<T,Y>(r))
         {}
-  
+
   template<class Y>
     clt_shared_ptr & operator=(clt_shared_ptr<Y> const & r)
       {