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