Salome HOME
merge from branch BR_For40_DSC tag mergeto_BR_Dev_For_4_0_16apr07
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_UseCaseIterator.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   : SALOMEDSImpl_UseCaseIterator.cxx
21 //  Author : Serge RUIN
22 //  Module : SALOME
23
24 #include "SALOMEDSImpl_UseCaseIterator.hxx"
25 #include "SALOMEDSImpl_SObject.hxx"
26 #include "SALOMEDSImpl_Study.hxx"
27
28 using namespace std;
29
30 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_UseCaseIterator, MMgt_TShared )
31 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_UseCaseIterator, MMgt_TShared )
32
33 //============================================================================
34 /*! Function : constructor
35  *  Purpose  :
36  */
37 //============================================================================
38 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator(const TDF_Label& theLabel, 
39                                                            const Standard_GUID& theGUID,
40                                                            const bool allLevels)
41 :_guid(theGUID), _levels(allLevels)
42 {
43   if(theLabel.FindAttribute(_guid, _node)) {
44     _it.Initialize (_node, _levels);
45   }
46 }
47
48 //============================================================================
49 /*! Function : destructor
50  *  Purpose  :
51  */
52 //============================================================================
53 SALOMEDSImpl_UseCaseIterator::~SALOMEDSImpl_UseCaseIterator()
54 {
55 }
56
57 //============================================================================
58 /*! Function :Init
59  * 
60  */
61 //============================================================================
62 void SALOMEDSImpl_UseCaseIterator::Init(bool allLevels)
63
64   _it.Initialize (_node, allLevels);
65 }
66
67 //============================================================================
68 /*! Function : More
69  * 
70  */
71 //============================================================================
72 bool SALOMEDSImpl_UseCaseIterator::More()
73 {
74   return _it.More();
75 }
76
77  //============================================================================
78 /*! Function : Next
79  * 
80  */
81 //============================================================================
82 void SALOMEDSImpl_UseCaseIterator::Next()
83 {
84   _it.Next();
85 }
86
87
88 //============================================================================
89 /*! Function :
90  *  Purpose  :
91  */
92 //============================================================================
93
94 Handle(SALOMEDSImpl_SObject) SALOMEDSImpl_UseCaseIterator::Value()
95 {
96   TDF_Label L = _it.Value()->Label();
97   return SALOMEDSImpl_Study::SObject(L);
98 }
99