Salome HOME
Copyright update: 2016
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_Study.cxx
index 8466a67231005aa193c87f5f1703f0669839a431..63d44b5ac2acb37fbfc6279e84fbeeea2295e5b9 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  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
@@ -1008,3 +1008,9 @@ void SALOMEDS_Study::attach(SALOMEDS::Observer_ptr theObserver,bool modify)
   if(CORBA::is_nil(_corba_impl)) GetStudy(); //If CORBA implementation is null then retrieve it
   _corba_impl->attach(theObserver,modify);
 }
+
+void SALOMEDS_Study::detach(SALOMEDS::Observer_ptr theObserver)
+{
+  if(CORBA::is_nil(_corba_impl)) GetStudy(); //If CORBA implementation is null then retrieve it
+  _corba_impl->detach(theObserver);
+}