Salome HOME
yfr : Merge with v1.2
[modules/smesh.git] / src / SMDS / SMDS_ListIteratorOfListOfMesh.hxx
1 //  SMESH SMDS : implementaion of Salome mesh data structure
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMDS_ListIteratorOfListOfMesh.hxx
25 //  Module : SMESH
26
27 #ifndef _SMDS_ListIteratorOfListOfMesh_HeaderFile
28 #define _SMDS_ListIteratorOfListOfMesh_HeaderFile
29
30 #ifndef _Standard_Address_HeaderFile
31 #include <Standard_Address.hxx>
32 #endif
33 #ifndef _Handle_SMDS_Mesh_HeaderFile
34 #include "Handle_SMDS_Mesh.hxx"
35 #endif
36 #ifndef _Handle_SMDS_ListNodeOfListOfMesh_HeaderFile
37 #include "Handle_SMDS_ListNodeOfListOfMesh.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 SMDS_ListOfMesh;
45 class SMDS_Mesh;
46 class SMDS_ListNodeOfListOfMesh;
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 SMDS_ListIteratorOfListOfMesh  {
57
58 public:
59
60     inline void* operator new(size_t,void* anAddress) 
61       {
62         return anAddress;
63       }
64     inline void* operator new(size_t size) 
65       { 
66         return Standard::Allocate(size); 
67       }
68     inline void  operator delete(void *anAddress) 
69       { 
70         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
71       }
72 //    inline void  operator delete(void *anAddress, size_t size) 
73 //      { 
74 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
75 //      }
76  // Methods PUBLIC
77  // 
78 Standard_EXPORT SMDS_ListIteratorOfListOfMesh();
79 Standard_EXPORT SMDS_ListIteratorOfListOfMesh(const SMDS_ListOfMesh& L);
80 Standard_EXPORT   void Initialize(const SMDS_ListOfMesh& L) ;
81 Standard_EXPORT inline   Standard_Boolean More() const;
82 Standard_EXPORT   void Next() ;
83 Standard_EXPORT   Handle_SMDS_Mesh& Value() const;
84
85
86 friend class SMDS_ListOfMesh;
87
88
89
90 protected:
91
92  // Methods PROTECTED
93  // 
94
95
96  // Fields PROTECTED
97  //
98
99
100 private: 
101
102  // Methods PRIVATE
103  // 
104
105
106  // Fields PRIVATE
107  //
108 Standard_Address current;
109 Standard_Address previous;
110
111
112 };
113
114 #define Item Handle_SMDS_Mesh
115 #define Item_hxx <SMDS_Mesh.hxx>
116 #define TCollection_ListNode SMDS_ListNodeOfListOfMesh
117 #define TCollection_ListNode_hxx <SMDS_ListNodeOfListOfMesh.hxx>
118 #define TCollection_ListIterator SMDS_ListIteratorOfListOfMesh
119 #define TCollection_ListIterator_hxx <SMDS_ListIteratorOfListOfMesh.hxx>
120 #define Handle_TCollection_ListNode Handle_SMDS_ListNodeOfListOfMesh
121 #define TCollection_ListNode_Type_() SMDS_ListNodeOfListOfMesh_Type_()
122 #define TCollection_List SMDS_ListOfMesh
123 #define TCollection_List_hxx <SMDS_ListOfMesh.hxx>
124
125 #include <TCollection_ListIterator.lxx>
126
127 #undef Item
128 #undef Item_hxx
129 #undef TCollection_ListNode
130 #undef TCollection_ListNode_hxx
131 #undef TCollection_ListIterator
132 #undef TCollection_ListIterator_hxx
133 #undef Handle_TCollection_ListNode
134 #undef TCollection_ListNode_Type_
135 #undef TCollection_List
136 #undef TCollection_List_hxx
137
138
139 // other inline functions and methods (like "C++: function call" methods)
140 //
141
142
143 #endif