Salome HOME
NRI : Merge from V1_2.
[modules/kernel.git] / src / SALOMEGUI / SALOME_ListOfFilter.hxx
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
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   : SALOME_ListOfFilter.hxx
25 //  Module : SALOME
26
27 #ifndef _SALOME_ListOfFilter_HeaderFile
28 #define _SALOME_ListOfFilter_HeaderFile
29
30 #ifndef _Standard_Address_HeaderFile
31 #include <Standard_Address.hxx>
32 #endif
33 #ifndef _Handle_SALOME_Filter_HeaderFile
34 #include <Handle_SALOME_Filter.hxx>
35 #endif
36 #ifndef _Handle_SALOME_ListNodeOfListOfFilter_HeaderFile
37 #include <Handle_SALOME_ListNodeOfListOfFilter.hxx>
38 #endif
39 #ifndef _Standard_Integer_HeaderFile
40 #include <Standard_Integer.hxx>
41 #endif
42 #ifndef _Standard_Boolean_HeaderFile
43 #include <Standard_Boolean.hxx>
44 #endif
45 class Standard_NoSuchObject;
46 class SALOME_ListIteratorOfListOfFilter;
47 class SALOME_Filter;
48 class SALOME_ListNodeOfListOfFilter;
49
50
51 #ifndef _Standard_HeaderFile
52 #include <Standard.hxx>
53 #endif
54 #ifndef _Standard_Macro_HeaderFile
55 #include <Standard_Macro.hxx>
56 #endif
57
58 class SALOME_ListOfFilter  {
59
60 public:
61
62     inline void* operator new(size_t,void* anAddress) 
63       {
64         return anAddress;
65       }
66     inline void* operator new(size_t size) 
67       { 
68         return Standard::Allocate(size); 
69       }
70     inline void  operator delete(void *anAddress) 
71       { 
72         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
73       }
74 //    inline void  operator delete(void *anAddress, size_t size) 
75 //      { 
76 //        if (anAddress) Standard::Free((Standard_Address&)anAddress,size); 
77 //      }
78  // Methods PUBLIC
79  // 
80 Standard_EXPORT SALOME_ListOfFilter();
81 Standard_EXPORT   void Assign(const SALOME_ListOfFilter& Other) ;
82   void operator=(const SALOME_ListOfFilter& Other) 
83 {
84   Assign(Other);
85 }
86
87 Standard_EXPORT   Standard_Integer Extent() const;
88 Standard_EXPORT   void Clear() ;
89 ~SALOME_ListOfFilter()
90 {
91   Clear();
92 }
93
94 Standard_EXPORT inline   Standard_Boolean IsEmpty() const;
95 Standard_EXPORT   void Prepend(const Handle(SALOME_Filter)& I) ;
96 Standard_EXPORT   void Prepend(SALOME_ListOfFilter& Other) ;
97 Standard_EXPORT   void Append(const Handle(SALOME_Filter)& I) ;
98 Standard_EXPORT   void Append(SALOME_ListOfFilter& Other) ;
99 Standard_EXPORT   Handle_SALOME_Filter& First() const;
100 Standard_EXPORT   Handle_SALOME_Filter& Last() const;
101 Standard_EXPORT   void RemoveFirst() ;
102 Standard_EXPORT   void Remove(SALOME_ListIteratorOfListOfFilter& It) ;
103 Standard_EXPORT   void InsertBefore(const Handle(SALOME_Filter)& I,SALOME_ListIteratorOfListOfFilter& It) ;
104 Standard_EXPORT   void InsertBefore(SALOME_ListOfFilter& Other,SALOME_ListIteratorOfListOfFilter& It) ;
105 Standard_EXPORT   void InsertAfter(const Handle(SALOME_Filter)& I,SALOME_ListIteratorOfListOfFilter& It) ;
106 Standard_EXPORT   void InsertAfter(SALOME_ListOfFilter& Other,SALOME_ListIteratorOfListOfFilter& It) ;
107
108
109 friend class SALOME_ListIteratorOfListOfFilter;
110
111
112
113 protected:
114
115  // Methods PROTECTED
116  // 
117
118
119  // Fields PROTECTED
120  //
121
122
123 private: 
124
125  // Methods PRIVATE
126  // 
127 Standard_EXPORT SALOME_ListOfFilter(const SALOME_ListOfFilter& Other);
128
129
130  // Fields PRIVATE
131  //
132 Standard_Address myFirst;
133 Standard_Address myLast;
134
135
136 };
137
138 #define Item Handle_SALOME_Filter
139 #define Item_hxx "SALOME_Filter.hxx"
140 #define TCollection_ListNode SALOME_ListNodeOfListOfFilter
141 #define TCollection_ListNode_hxx "SALOME_ListNodeOfListOfFilter.hxx"
142 #define TCollection_ListIterator SALOME_ListIteratorOfListOfFilter
143 #define TCollection_ListIterator_hxx "SALOME_ListIteratorOfListOfFilter.hxx"
144 #define Handle_TCollection_ListNode Handle_SALOME_ListNodeOfListOfFilter
145 #define TCollection_ListNode_Type_() SALOME_ListNodeOfListOfFilter_Type_()
146 #define TCollection_List SALOME_ListOfFilter
147 #define TCollection_List_hxx "SALOME_ListOfFilter.hxx"
148
149 #include <TCollection_List.lxx>
150
151 #undef Item
152 #undef Item_hxx
153 #undef TCollection_ListNode
154 #undef TCollection_ListNode_hxx
155 #undef TCollection_ListIterator
156 #undef TCollection_ListIterator_hxx
157 #undef Handle_TCollection_ListNode
158 #undef TCollection_ListNode_Type_
159 #undef TCollection_List
160 #undef TCollection_List_hxx
161
162
163 // other inline functions and methods (like "C++: function call" methods)
164 //
165
166
167 #endif