Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_SComponentIterator_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_SComponentIterator_i.cxx
23 //  Author : Sergey RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDS_SComponentIterator_i.hxx"
27 #include "SALOMEDS.hxx"
28 #include "SALOMEDSImpl_SComponent.hxx"
29
30 using namespace std;
31
32 //============================================================================
33 /*! Function : constructor
34  * 
35  */
36 //============================================================================
37
38 SALOMEDS_SComponentIterator_i::SALOMEDS_SComponentIterator_i(const SALOMEDSImpl_SComponentIterator& theImpl, 
39                                                              CORBA::ORB_ptr orb) 
40 {
41   _orb = CORBA::ORB::_duplicate(orb);
42   _impl = theImpl.GetPersistentCopy();
43 }
44
45 //============================================================================
46 /*! Function : destructor
47  * 
48  */
49 //============================================================================
50 SALOMEDS_SComponentIterator_i::~SALOMEDS_SComponentIterator_i()
51 {
52    if(_impl) delete _impl;
53 }
54
55 //============================================================================
56 /*! Function : Init
57  * 
58  */
59 //============================================================================
60 void SALOMEDS_SComponentIterator_i::Init()
61
62   SALOMEDS::Locker lock; 
63   _impl->Init();
64 }
65
66 //============================================================================
67 /*! Function : More
68  * 
69  */
70 //============================================================================
71 CORBA::Boolean SALOMEDS_SComponentIterator_i::More()
72 {
73   SALOMEDS::Locker lock; 
74   return _impl->More();
75 }
76
77  //============================================================================
78 /*! Function : Next
79   */
80 //============================================================================
81 void SALOMEDS_SComponentIterator_i::Next()
82
83   SALOMEDS::Locker lock; 
84   _impl->Next();
85 }
86
87
88 //============================================================================
89 /*! Function : Value
90  * 
91  */
92 //============================================================================
93 SALOMEDS::SComponent_ptr SALOMEDS_SComponentIterator_i::Value()
94 {
95   SALOMEDS::Locker lock; 
96   SALOMEDS::SComponent_var sco = SALOMEDS_SComponent_i::New (_impl->Value(), _orb);
97   return sco._retn();
98 }
99