Salome HOME
Merge branch 'V7_main' of salome:modules/gui.git into V7_main
[modules/gui.git] / src / OBJECT / SALOME_ListIteratorOfListIO.hxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
24 //  File   : SALOME_ListIteratorOfListIO.hxx
25 //  Module : SALOME
26 //
27 #ifndef _SALOME_ListIteratorOfListIO_HeaderFile
28 #define _SALOME_ListIteratorOfListIO_HeaderFile
29
30 #ifndef _Standard_Address_HeaderFile
31 #include <Standard_Address.hxx>
32 #endif
33 #ifndef _Handle_SALOME_InteractiveObject_HeaderFile
34 #include "Handle_SALOME_InteractiveObject.hxx"
35 #endif
36 #ifndef _Handle_SALOME_ListNodeOfListIO_HeaderFile
37 #include "Handle_SALOME_ListNodeOfListIO.hxx"
38 #endif
39 #ifndef _Standard_Boolean_HeaderFile
40 #include <Standard_Boolean.hxx>
41 #endif
42 class Standard_NoMoreObject;
43 class Standard_NoSuchObject;
44 class SALOME_ListIO;
45 class SALOME_InteractiveObject;
46 class SALOME_ListNodeOfListIO;
47
48
49 #ifndef _Standard_HeaderFile
50 #include <Standard.hxx>
51 #endif
52 #ifndef _Standard_Macro_HeaderFile
53 #include <Standard_Macro.hxx>
54 #endif
55
56 class SALOME_ListIteratorOfListIO  {
57
58 public:
59
60     void* operator new(size_t,void* anAddress) 
61       {
62         return anAddress;
63       }
64     void* operator new(size_t size) 
65       { 
66         return Standard::Allocate(size); 
67       }
68     void  operator delete(void *anAddress) 
69       { 
70         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
71       }
72  // Methods PUBLIC
73  // 
74 Standard_EXPORT SALOME_ListIteratorOfListIO();
75 Standard_EXPORT SALOME_ListIteratorOfListIO(const SALOME_ListIO& L);
76 Standard_EXPORT   void Initialize(const SALOME_ListIO& L) ;
77 Standard_EXPORT   Standard_Boolean More() const;
78 Standard_EXPORT   void Next() ;
79 Standard_EXPORT   Handle_SALOME_InteractiveObject& Value() const;
80
81
82 friend class SALOME_ListIO;
83
84
85
86 protected:
87
88  // Methods PROTECTED
89  // 
90
91
92  // Fields PROTECTED
93  //
94
95
96 private: 
97
98  // Methods PRIVATE
99  // 
100
101
102  // Fields PRIVATE
103  //
104 Standard_Address current;
105 Standard_Address previous;
106
107
108 };
109
110 #define Item Handle_SALOME_InteractiveObject
111 #define Item_hxx "SALOME_InteractiveObject.hxx"
112 #define TCollection_ListNode SALOME_ListNodeOfListIO
113 #define TCollection_ListNode_hxx "SALOME_ListNodeOfListIO.hxx"
114 #define TCollection_ListIterator SALOME_ListIteratorOfListIO
115 #define TCollection_ListIterator_hxx "SALOME_ListIteratorOfListIO.hxx"
116 #define Handle_TCollection_ListNode Handle_SALOME_ListNodeOfListIO
117 #define TCollection_ListNode_Type_() SALOME_ListNodeOfListIO_Type_()
118 #define TCollection_List SALOME_ListIO
119 #define TCollection_List_hxx "SALOME_ListIO.hxx"
120
121 #include <TCollection_ListIterator.lxx>
122
123 #undef Item
124 #undef Item_hxx
125 #undef TCollection_ListNode
126 #undef TCollection_ListNode_hxx
127 #undef TCollection_ListIterator
128 #undef TCollection_ListIterator_hxx
129 #undef Handle_TCollection_ListNode
130 #undef TCollection_ListNode_Type_
131 #undef TCollection_List
132 #undef TCollection_List_hxx
133
134
135 // other Inline functions and methods (like "C++: function call" methods)
136 //
137
138
139 #endif