Salome HOME
CCAR: remove memory leaks in non local SALOMEDS
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_UseCaseIterator_i.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SALOMEDS_UseCaseIterator_i.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDS_UseCaseIterator_i.hxx"
27 #include "SALOMEDS_SObject_i.hxx"
28 #include "SALOMEDS.hxx"
29
30 #include "SALOMEDSImpl_SObject.hxx"
31 #include "utilities.h"
32
33 using namespace std;
34
35 //============================================================================
36 /*! Function : constructor
37  *  Purpose  :
38  */
39 //============================================================================
40 SALOMEDS_UseCaseIterator_i::SALOMEDS_UseCaseIterator_i(const SALOMEDSImpl_UseCaseIterator& theImpl, 
41                                                        CORBA::ORB_ptr orb)
42 {
43   _orb = CORBA::ORB::_duplicate(orb);
44   _impl = theImpl.GetPersistentCopy();
45 }
46
47 //============================================================================
48 /*! Function : destructor
49  *  Purpose  :
50  */
51 //============================================================================
52 SALOMEDS_UseCaseIterator_i::~SALOMEDS_UseCaseIterator_i()
53 {
54     if(_impl) delete _impl;
55 }
56
57 //============================================================================
58 /*! Function :Init
59  * 
60  */
61 //============================================================================
62 void SALOMEDS_UseCaseIterator_i::Init(CORBA::Boolean allLevels)
63
64   SALOMEDS::Locker lock;
65   if(_impl) _impl->Init(allLevels);
66 }
67
68 //============================================================================
69 /*! Function : More
70  * 
71  */
72 //============================================================================
73 CORBA::Boolean SALOMEDS_UseCaseIterator_i::More()
74 {
75   SALOMEDS::Locker lock;
76   if(!_impl) return false;
77   return _impl->More();
78 }
79
80 //============================================================================
81 /*! Function : Next
82  * 
83  */
84 //============================================================================
85 void SALOMEDS_UseCaseIterator_i::Next()
86 {
87   SALOMEDS::Locker lock;
88   if(_impl) _impl->Next();
89 }
90
91
92 //============================================================================
93 /*! Function :
94  *  Purpose  :
95  */
96 //============================================================================
97 SALOMEDS::SObject_ptr SALOMEDS_UseCaseIterator_i::Value()
98 {
99   SALOMEDS::Locker lock;
100   if(!_impl) return SALOMEDS::SObject::_nil();
101   SALOMEDSImpl_SObject aSO = _impl->Value();
102   SALOMEDS::SObject_var so = SALOMEDS_SObject_i::New (aSO, _orb);
103   return so._retn();
104 }
105