Salome HOME
Removed includes and libraries of OCC
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_UseCaseIterator_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/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDS_UseCaseIterator_i.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDS_UseCaseIterator_i.hxx"
26 #include "SALOMEDS_SObject_i.hxx"
27 #include "SALOMEDS.hxx"
28
29 #include "SALOMEDSImpl_SObject.hxx"
30 #include "utilities.h"
31
32 using namespace std;
33
34 //============================================================================
35 /*! Function : constructor
36  *  Purpose  :
37  */
38 //============================================================================
39 SALOMEDS_UseCaseIterator_i::SALOMEDS_UseCaseIterator_i(const SALOMEDSImpl_UseCaseIterator& theImpl, 
40                                                        CORBA::ORB_ptr orb)
41 {
42   _orb = CORBA::ORB::_duplicate(orb);
43   _impl = theImpl.GetPersistentCopy();
44 }
45
46 //============================================================================
47 /*! Function : destructor
48  *  Purpose  :
49  */
50 //============================================================================
51 SALOMEDS_UseCaseIterator_i::~SALOMEDS_UseCaseIterator_i()
52 {
53     if(_impl) delete _impl;
54 }
55
56 //============================================================================
57 /*! Function :Init
58  * 
59  */
60 //============================================================================
61 void SALOMEDS_UseCaseIterator_i::Init(CORBA::Boolean allLevels)
62
63   SALOMEDS::Locker lock;
64   if(_impl) _impl->Init(allLevels);
65 }
66
67 //============================================================================
68 /*! Function : More
69  * 
70  */
71 //============================================================================
72 CORBA::Boolean SALOMEDS_UseCaseIterator_i::More()
73 {
74   SALOMEDS::Locker lock;
75   if(!_impl) return false;
76   return _impl->More();
77 }
78
79 //============================================================================
80 /*! Function : Next
81  * 
82  */
83 //============================================================================
84 void SALOMEDS_UseCaseIterator_i::Next()
85 {
86   SALOMEDS::Locker lock;
87   if(_impl) _impl->Next();
88 }
89
90
91 //============================================================================
92 /*! Function :
93  *  Purpose  :
94  */
95 //============================================================================
96 SALOMEDS::SObject_ptr SALOMEDS_UseCaseIterator_i::Value()
97 {
98   SALOMEDS::Locker lock;
99   if(!_impl) return SALOMEDS::SObject::_nil();
100   SALOMEDSImpl_SObject aSO = _impl->Value();
101   SALOMEDS::SObject_var so = SALOMEDS_SObject_i::New (aSO, _orb);
102   return so._retn();
103 }
104