Salome HOME
CCAR: remove some memory leaks in non local SALOMEDS
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_ChildIterator_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_ChildIterator_i.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDS_ChildIterator_i.hxx"
27 #include "SALOMEDS_SObject_i.hxx"
28 #include "SALOMEDS.hxx"
29 #include "SALOMEDSImpl_SObject.hxx"
30 #include "SALOMEDSImpl_Study.hxx"
31 #include "utilities.h"
32
33 using namespace std;
34
35 //============================================================================
36 /*! Function : constructor
37  *  Purpose  :
38  */
39 //============================================================================
40 SALOMEDS_ChildIterator_i::SALOMEDS_ChildIterator_i(const SALOMEDSImpl_ChildIterator& theImpl,
41                                                    CORBA::ORB_ptr orb) 
42   : _it(theImpl.GetPersistentCopy())
43 {
44   SALOMEDS::Locker lock;
45   _orb = CORBA::ORB::_duplicate(orb);
46 }
47
48 //============================================================================
49 /*! Function : destructor
50  *  Purpose  :
51  */
52 //============================================================================
53 SALOMEDS_ChildIterator_i::~SALOMEDS_ChildIterator_i()
54 {
55     if(_it) delete _it;
56 }
57
58 //============================================================================
59 /*! Function :Init
60  * 
61  */
62 //============================================================================
63 void SALOMEDS_ChildIterator_i::Init()
64
65   SALOMEDS::Locker lock;
66   _it->Init();
67 }
68
69 //============================================================================
70 /*! Function :InitEx
71  * 
72  */
73 //============================================================================
74 void SALOMEDS_ChildIterator_i::InitEx(CORBA::Boolean allLevels)
75
76   SALOMEDS::Locker lock;
77   _it->InitEx (allLevels);
78 }
79
80 //============================================================================
81 /*! Function : More
82  * 
83  */
84 //============================================================================
85 CORBA::Boolean SALOMEDS_ChildIterator_i::More()
86 {
87   SALOMEDS::Locker lock;
88   return _it->More();
89 }
90
91  //============================================================================
92 /*! Function : Next
93  * 
94  */
95 //============================================================================
96 void SALOMEDS_ChildIterator_i::Next()
97 {
98   SALOMEDS::Locker lock;
99   _it->Next();
100 }
101
102
103 //============================================================================
104 /*! Function : Value
105  *  Purpose  :
106  */
107 //============================================================================
108
109 SALOMEDS::SObject_ptr SALOMEDS_ChildIterator_i::Value()
110 {
111   SALOMEDS::Locker lock;
112   SALOMEDSImpl_SObject aSO = _it->Value();
113   SALOMEDS::SObject_var so = SALOMEDS_SObject_i::New (aSO, _orb);
114   return so._retn();
115 }
116