Salome HOME
ENV: Windows porting.
[modules/gui.git] / src / OBJECT / SALOME_ListIO.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_ListIO.hxx
25 //  Module : SALOME
26
27 #ifndef _SALOME_ListIO_HeaderFile
28 #define _SALOME_ListIO_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_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_ListIteratorOfListIO;
47 class SALOME_InteractiveObject;
48 class SALOME_ListNodeOfListIO;
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_ListIO  {
59
60 public:
61
62     void* operator new(size_t,void* anAddress) 
63       {
64         return anAddress;
65       }
66     void* operator new(size_t size) 
67       { 
68         return Standard::Allocate(size); 
69       }
70     void  operator delete(void *anAddress) 
71       { 
72         if (anAddress) Standard::Free((Standard_Address&)anAddress); 
73       }
74  // Methods PUBLIC
75  // 
76 Standard_EXPORT SALOME_ListIO();
77 Standard_EXPORT   void Assign(const SALOME_ListIO& Other) ;
78   void operator=(const SALOME_ListIO& Other) 
79 {
80   Assign(Other);
81 }
82
83 Standard_EXPORT   Standard_Integer Extent() const;
84 Standard_EXPORT   void Clear() ;
85 ~SALOME_ListIO()
86 {
87   Clear();
88 }
89
90 Standard_EXPORT   Standard_Boolean IsEmpty() const;
91 Standard_EXPORT   void Prepend(const Handle(SALOME_InteractiveObject)& I) ;
92 Standard_EXPORT   void Prepend(SALOME_ListIO& Other) ;
93 Standard_EXPORT   void Prepend(const Handle(SALOME_InteractiveObject)& I, SALOME_ListIteratorOfListIO& It) ;
94 Standard_EXPORT   void Append(const Handle(SALOME_InteractiveObject)& I) ;
95 Standard_EXPORT   void Append(SALOME_ListIO& Other) ;
96 Standard_EXPORT   void Append(const Handle(SALOME_InteractiveObject)& I, SALOME_ListIteratorOfListIO& It) ;
97 Standard_EXPORT   Handle_SALOME_InteractiveObject& First() const;
98 Standard_EXPORT   Handle_SALOME_InteractiveObject& Last() const;
99 Standard_EXPORT   void RemoveFirst() ;
100 Standard_EXPORT   void Remove(SALOME_ListIteratorOfListIO& It) ;
101 Standard_EXPORT   void InsertBefore(const Handle(SALOME_InteractiveObject)& I,SALOME_ListIteratorOfListIO& It) ;
102 Standard_EXPORT   void InsertBefore(SALOME_ListIO& Other,SALOME_ListIteratorOfListIO& It) ;
103 Standard_EXPORT   void InsertAfter(const Handle(SALOME_InteractiveObject)& I,SALOME_ListIteratorOfListIO& It) ;
104 Standard_EXPORT   void InsertAfter(SALOME_ListIO& Other,SALOME_ListIteratorOfListIO& It) ;
105
106
107 friend class SALOME_ListIteratorOfListIO;
108
109
110
111 protected:
112
113  // Methods PROTECTED
114  // 
115
116
117  // Fields PROTECTED
118  //
119
120
121 private: 
122
123  // Methods PRIVATE
124  // 
125 Standard_EXPORT SALOME_ListIO(const SALOME_ListIO& Other);
126
127
128  // Fields PRIVATE
129  //
130 Standard_Address myFirst;
131 Standard_Address myLast;
132
133
134 };
135
136 #define Item Handle_SALOME_InteractiveObject
137 #define Item_hxx "SALOME_InteractiveObject.hxx"
138 #define TCollection_ListNode SALOME_ListNodeOfListIO
139 #define TCollection_ListNode_hxx "SALOME_ListNodeOfListIO.hxx"
140 #define TCollection_ListIterator SALOME_ListIteratorOfListIO
141 #define TCollection_ListIterator_hxx "SALOME_ListIteratorOfListIO.hxx"
142 #define Handle_TCollection_ListNode Handle_SALOME_ListNodeOfListIO
143 #define TCollection_ListNode_Type_() SALOME_ListNodeOfListIO_Type_()
144 #define TCollection_List SALOME_ListIO
145 #define TCollection_List_hxx "SALOME_ListIO.hxx"
146
147 #include <TCollection_List.lxx>
148
149 #undef Item
150 #undef Item_hxx
151 #undef TCollection_ListNode
152 #undef TCollection_ListNode_hxx
153 #undef TCollection_ListIterator
154 #undef TCollection_ListIterator_hxx
155 #undef Handle_TCollection_ListNode
156 #undef TCollection_ListNode_Type_
157 #undef TCollection_List
158 #undef TCollection_List_hxx
159
160
161 // other Inline functions and methods (like "C++: function call" methods)
162 //
163
164
165 #endif