Salome HOME
Base implementation of Notebook
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_UseCaseIterator.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   : SALOMEDSImpl_UseCaseIterator.cxx
23 //  Author : Serge RUIN
24 //  Module : SALOME
25 //
26 #include "SALOMEDSImpl_UseCaseIterator.hxx"
27 #include "SALOMEDSImpl_SObject.hxx"
28 #include "SALOMEDSImpl_Study.hxx"
29
30 using namespace std;
31
32 //============================================================================
33 /*! Function : empty constructor
34  *  Purpose  :
35  */
36 //============================================================================
37 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator()
38 {
39   _node = NULL;    
40 }
41
42
43 //============================================================================
44 /*! Function : constructor
45  *  Purpose  :
46  */
47 //============================================================================
48 SALOMEDSImpl_UseCaseIterator::SALOMEDSImpl_UseCaseIterator(const DF_Label& theLabel, 
49                                                            const string& theGUID,
50                                                            const bool allLevels)
51 :_guid(theGUID), _levels(allLevels)
52 {
53   if((_node = (SALOMEDSImpl_AttributeTreeNode*)theLabel.FindAttribute(_guid))) {
54     _it.Initialize (_node, _levels);
55   }
56 }
57
58 //============================================================================
59 /*! Function : destructor
60  *  Purpose  :
61  */
62 //============================================================================
63 SALOMEDSImpl_UseCaseIterator::~SALOMEDSImpl_UseCaseIterator()
64 {
65 }
66
67 //============================================================================
68 /*! Function :Init
69  * 
70  */
71 //============================================================================
72 void SALOMEDSImpl_UseCaseIterator::Init(bool allLevels)
73
74   _it.Initialize (_node, allLevels);
75 }
76
77 //============================================================================
78 /*! Function : More
79  * 
80  */
81 //============================================================================
82 bool SALOMEDSImpl_UseCaseIterator::More()
83 {
84   return _it.More();
85 }
86
87 //============================================================================
88 /*! Function : Next
89  * 
90  */
91 //============================================================================
92 void SALOMEDSImpl_UseCaseIterator::Next()
93 {
94   _it.Next();
95 }
96
97
98 //============================================================================
99 /*! Function :
100  *  Purpose  :
101  */
102 //============================================================================
103
104 SALOMEDSImpl_SObject SALOMEDSImpl_UseCaseIterator::Value()
105 {
106   DF_Label L = _it.Value()->Label();
107   return SALOMEDSImpl_Study::SObject(L);
108 }
109
110 //============================================================================
111 /*! Function : GetPersistentCopy
112  * 
113  */
114 //============================================================================
115 SALOMEDSImpl_UseCaseIterator* SALOMEDSImpl_UseCaseIterator::GetPersistentCopy() const
116 {
117   SALOMEDSImpl_UseCaseIterator* itr = new SALOMEDSImpl_UseCaseIterator();
118   itr->_it = _it;
119   itr->_node = _node;
120   itr->_guid = _guid;
121   itr->_levels = _levels;
122   
123   return itr;
124 }