Salome HOME
Ajout des properties
[modules/kernel.git] / src / HDFPersist / HDFexplorer.cc
1 //  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
2 //
3 //  Copyright (C) 2003  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 //
23 //
24 //  File   : HDFexplorer.cc
25 //  Module : SALOME
26
27 #include "HDFcontainerObject.hxx"
28 #include "HDFexception.hxx"
29 #include "HDFinternalObject.hxx"
30 #include "HDFexplorer.hxx"
31 using namespace std;
32
33 HDFexplorer::HDFexplorer(HDFcontainerObject *container)
34 {
35   _container = container;
36   _size = _container->nSons();
37   _head = _container->GetFirstSon();
38   _queue = _container->GetLastSon();
39   _current = _head;
40 }
41
42 HDFexplorer::~HDFexplorer()
43 {
44 }
45
46 void HDFexplorer::Init()
47 {
48   _current = _head;
49 }
50
51 void HDFexplorer::Next()
52 {
53   _current = _current->GetNextBrother(); 
54 }
55
56 int HDFexplorer::More()
57 {
58   if (_current != NULL)
59     return 1;
60   else
61     return 0;
62 }
63
64 HDFinternalObject *HDFexplorer::Value()
65 {
66   return _current;
67 }
68
69 void HDFexplorer::Reset(HDFcontainerObject *new_container)
70 {
71   _container = new_container;
72   _size = _container->nSons();
73   _head = _container->GetFirstSon();
74   _queue = _container->GetLastSon();
75   _current = _head;
76 }