sl@0
|
1 |
// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
// Class RReadStream
|
sl@0
|
17 |
inline RReadStream::RReadStream()
|
sl@0
|
18 |
: iSrc(NULL)
|
sl@0
|
19 |
/** Sets the stream buffer source to NULL, which implies that it is safe to close
|
sl@0
|
20 |
|
sl@0
|
21 |
@see RReadStream::Source() */
|
sl@0
|
22 |
{}
|
sl@0
|
23 |
inline RReadStream::RReadStream(MStreamBuf* aSource)
|
sl@0
|
24 |
: iSrc(aSource)
|
sl@0
|
25 |
/** Constructs a read stream over the supplied stream buffer.
|
sl@0
|
26 |
|
sl@0
|
27 |
@param aSource The stream buffer used to read from the read stream.
|
sl@0
|
28 |
@see RReadStream::Source() */
|
sl@0
|
29 |
{}
|
sl@0
|
30 |
inline MStreamBuf* RReadStream::Source()
|
sl@0
|
31 |
/** Gets the underlying stream buffer for the read stream. This provides access
|
sl@0
|
32 |
to the stream-buffer implementation used by the read stream.
|
sl@0
|
33 |
|
sl@0
|
34 |
Note:
|
sl@0
|
35 |
|
sl@0
|
36 |
If the stream buffer supports seeking, this allows the RReadStream client
|
sl@0
|
37 |
to have random access to the stream data.
|
sl@0
|
38 |
|
sl@0
|
39 |
@return The underlying stream buffer for the read stream.
|
sl@0
|
40 |
@see RReadStream::Attach()
|
sl@0
|
41 |
@see RReadStream::Detach() */
|
sl@0
|
42 |
{return iSrc;}
|
sl@0
|
43 |
inline void RReadStream::Close()
|
sl@0
|
44 |
/** Frees resources used by the stream.
|
sl@0
|
45 |
|
sl@0
|
46 |
@see RReadStream::Release() */
|
sl@0
|
47 |
{Release();}
|
sl@0
|
48 |
inline void RReadStream::ReadL(RWriteStream& aStream)
|
sl@0
|
49 |
/** Writes the content of this stream to the specified write stream.
|
sl@0
|
50 |
|
sl@0
|
51 |
@param aStream A reference to the write stream to which this stream is to be written.*/
|
sl@0
|
52 |
{aStream.WriteL(*this);}
|
sl@0
|
53 |
inline void RReadStream::ReadL(RWriteStream& aStream,TInt aLength)
|
sl@0
|
54 |
/** Writes the content of this stream to the specified write stream.
|
sl@0
|
55 |
|
sl@0
|
56 |
@param aStream A reference to the write stream to which this stream is to be written.
|
sl@0
|
57 |
@param aLength The length of data from this stream to be written to aStream.*/
|
sl@0
|
58 |
{aStream.WriteL(*this,aLength);}
|
sl@0
|
59 |
inline void RReadStream::Pop()
|
sl@0
|
60 |
/** Removes the cleanup item for this read stream object from the cleanup stack. */
|
sl@0
|
61 |
{CleanupStack::Pop();}
|
sl@0
|
62 |
inline void RReadStream::Attach(MStreamBuf* aSource)
|
sl@0
|
63 |
/** Sets the stream buffer source for this read stream. The existing source (if
|
sl@0
|
64 |
there is one) will be discarded.
|
sl@0
|
65 |
|
sl@0
|
66 |
This is useful for derived classes, enabling them to set the source following
|
sl@0
|
67 |
construction.
|
sl@0
|
68 |
|
sl@0
|
69 |
Note:
|
sl@0
|
70 |
|
sl@0
|
71 |
Release() is not called on any discarded stream buffer.
|
sl@0
|
72 |
|
sl@0
|
73 |
@param aSource The new source stream buffer for this read stream.
|
sl@0
|
74 |
@see RReadStream::Source()
|
sl@0
|
75 |
@see RReadStream::Detach() */
|
sl@0
|
76 |
{iSrc=aSource;}
|
sl@0
|
77 |
inline void RReadStream::Detach()
|
sl@0
|
78 |
/** Sets the stream buffer source for this read stream to NULL. The existing source,
|
sl@0
|
79 |
if there is one, will be discarded.
|
sl@0
|
80 |
|
sl@0
|
81 |
Note that Release() is not called on any discarded stream buffer.
|
sl@0
|
82 |
|
sl@0
|
83 |
@see RReadStream::Source()
|
sl@0
|
84 |
@see RReadStream::Attach() */
|
sl@0
|
85 |
{iSrc=NULL;}
|
sl@0
|
86 |
|
sl@0
|
87 |
// Class RWriteStream
|
sl@0
|
88 |
inline RWriteStream::RWriteStream()
|
sl@0
|
89 |
: iSnk(NULL),iExterL(NULL)
|
sl@0
|
90 |
/** The stream buffer sink, as returned by Sink(), is set to NULL, and the stream
|
sl@0
|
91 |
has no associated Store map. */
|
sl@0
|
92 |
{}
|
sl@0
|
93 |
inline RWriteStream::RWriteStream(const MExternalizer<TStreamRef>& anExter)
|
sl@0
|
94 |
: iSnk(NULL),iExterL(&anExter)
|
sl@0
|
95 |
/** Constructs a write stream with an associated store map. The stream buffer sink
|
sl@0
|
96 |
is set to NULL.
|
sl@0
|
97 |
|
sl@0
|
98 |
@param anExter Specifies an externaliser. For example, CStoreMap implements
|
sl@0
|
99 |
MExternalizer<TStreamRef>. */
|
sl@0
|
100 |
{}
|
sl@0
|
101 |
inline RWriteStream::RWriteStream(MStreamBuf* aSink)
|
sl@0
|
102 |
: iSnk(aSink),iExterL(NULL)
|
sl@0
|
103 |
/** Constructs a write stream over the supplied stream buffer. The stream has no
|
sl@0
|
104 |
associated Store map.
|
sl@0
|
105 |
|
sl@0
|
106 |
@param aSink The stream buffer used to write to the write stream. */
|
sl@0
|
107 |
{}
|
sl@0
|
108 |
inline MStreamBuf* RWriteStream::Sink()
|
sl@0
|
109 |
/** Gets the underlying stream buffer for the write stream. This provides access
|
sl@0
|
110 |
to the stream-buffer implementation used by the write stream.
|
sl@0
|
111 |
|
sl@0
|
112 |
@return The underlying stream buffer for the write stream. */
|
sl@0
|
113 |
{return iSnk;}
|
sl@0
|
114 |
inline void RWriteStream::Pop()
|
sl@0
|
115 |
/** Removes the cleanup item for this write stream object from the cleanup stack. */
|
sl@0
|
116 |
{CleanupStack::Pop();}
|
sl@0
|
117 |
inline void RWriteStream::Attach(MStreamBuf* aSink)
|
sl@0
|
118 |
/** Sets the stream buffer sink for this write stream. The existing sink, if there
|
sl@0
|
119 |
is one, will be discarded.
|
sl@0
|
120 |
|
sl@0
|
121 |
This is useful for derived classes, enabling them to set the sink following
|
sl@0
|
122 |
construction.
|
sl@0
|
123 |
|
sl@0
|
124 |
Note:
|
sl@0
|
125 |
|
sl@0
|
126 |
Release() is not called for discarded sinks.
|
sl@0
|
127 |
|
sl@0
|
128 |
@param aSink The stream buffer sink for this write stream. */
|
sl@0
|
129 |
{iSnk=aSink;}
|
sl@0
|
130 |
inline void RWriteStream::Detach()
|
sl@0
|
131 |
/** Sets the stream buffer sink for this write stream to NULL. The existing sink,
|
sl@0
|
132 |
if there is one, will be discarded.
|
sl@0
|
133 |
|
sl@0
|
134 |
Note:
|
sl@0
|
135 |
|
sl@0
|
136 |
Release() is not called for discarded sinks. */
|
sl@0
|
137 |
{iSnk=NULL;}
|
sl@0
|
138 |
|
sl@0
|
139 |
// Class TCardinality
|
sl@0
|
140 |
inline TCardinality::TCardinality(TInt aCount)
|
sl@0
|
141 |
:iCount(aCount)
|
sl@0
|
142 |
/** Constructs the object with the specified value.
|
sl@0
|
143 |
|
sl@0
|
144 |
@param aCount The value for this object. */
|
sl@0
|
145 |
{
|
sl@0
|
146 |
#if defined (_DEBUG)
|
sl@0
|
147 |
__DbgChkRange(aCount);
|
sl@0
|
148 |
#endif
|
sl@0
|
149 |
}
|
sl@0
|
150 |
inline TCardinality::operator TInt() const
|
sl@0
|
151 |
{
|
sl@0
|
152 |
#if defined (_DEBUG)
|
sl@0
|
153 |
__DbgChkRange(iCount);
|
sl@0
|
154 |
#endif
|
sl@0
|
155 |
return iCount;
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
// Template class TExternalizer
|
sl@0
|
159 |
template <class T>
|
sl@0
|
160 |
inline void TExternalizer<T>::operator()(const T& anObject,RWriteStream& aStream) const
|
sl@0
|
161 |
{aStream<<anObject;}
|
sl@0
|
162 |
template <class T>
|
sl@0
|
163 |
inline TExternalizeFunction TExternalizer<T>::Function()
|
sl@0
|
164 |
/** Gets a pointer to the function to be used to perform externalisation.
|
sl@0
|
165 |
|
sl@0
|
166 |
The implementation is the private, static member of this class, ExternalizeAsL().
|
sl@0
|
167 |
|
sl@0
|
168 |
@return The externalisation function. */
|
sl@0
|
169 |
{return &ExternalizeAsL;}
|
sl@0
|
170 |
template <class T>
|
sl@0
|
171 |
void TExternalizer<T>::ExternalizeAsL(const TAny* aPtr,RWriteStream& aStream)
|
sl@0
|
172 |
{aStream<<*((const T*)aPtr);}
|
sl@0
|
173 |
inline TExternalizer<TAny>::TExternalizer(TExternalizeFunction aFunction)
|
sl@0
|
174 |
: iFunc(aFunction)
|
sl@0
|
175 |
{}
|
sl@0
|
176 |
inline void TExternalizer<TAny>::operator()(const TAny* aPtr,RWriteStream& aStream) const
|
sl@0
|
177 |
{(*iFunc)(aPtr,aStream);}
|
sl@0
|
178 |
inline TExternalizeFunction TExternalizer<TAny>::Function() const
|
sl@0
|
179 |
{return iFunc;}
|
sl@0
|
180 |
|
sl@0
|
181 |
// Template class TInternalizer
|
sl@0
|
182 |
template <class T>
|
sl@0
|
183 |
inline void TInternalizer<T>::operator()(T& anObject,RReadStream& aStream) const
|
sl@0
|
184 |
{aStream>>anObject;}
|
sl@0
|
185 |
template <class T>
|
sl@0
|
186 |
inline TInternalizeFunction TInternalizer<T>::Function()
|
sl@0
|
187 |
/** Gets a pointer to the function to be used to perform internalisation.
|
sl@0
|
188 |
|
sl@0
|
189 |
The implementation is the private, static member of this class, InternalizeAsL().
|
sl@0
|
190 |
|
sl@0
|
191 |
@return The internalisation function. */
|
sl@0
|
192 |
{return &InternalizeAsL;}
|
sl@0
|
193 |
template <class T>
|
sl@0
|
194 |
void TInternalizer<T>::InternalizeAsL(TAny* aPtr,RReadStream& aStream)
|
sl@0
|
195 |
{aStream>>*((T*)aPtr);}
|
sl@0
|
196 |
inline TInternalizer<TAny>::TInternalizer(TInternalizeFunction aFunction)
|
sl@0
|
197 |
: iFunc(aFunction)
|
sl@0
|
198 |
{}
|
sl@0
|
199 |
inline void TInternalizer<TAny>::operator()(TAny* aPtr,RReadStream& aStream) const
|
sl@0
|
200 |
{(*iFunc)(aPtr,aStream);}
|
sl@0
|
201 |
inline TInternalizeFunction TInternalizer<TAny>::Function() const
|
sl@0
|
202 |
{return iFunc;}
|
sl@0
|
203 |
|
sl@0
|
204 |
// Template class MExternalizer
|
sl@0
|
205 |
template <class T>
|
sl@0
|
206 |
inline void MExternalizer<T>::operator()(const T& anObject,RWriteStream& aStream) const
|
sl@0
|
207 |
{ExternalizeL(anObject,aStream);}
|
sl@0
|
208 |
|
sl@0
|
209 |
// Template class MInternalizer
|
sl@0
|
210 |
template <class T>
|
sl@0
|
211 |
inline void MInternalizer<T>::operator()(T& anObject,RReadStream& aStream) const
|
sl@0
|
212 |
{InternalizeL(anObject,aStream);}
|
sl@0
|
213 |
|
sl@0
|
214 |
// Class TStreamRef
|
sl@0
|
215 |
inline TStreamRef::TStreamRef(const TAny* aPtr,TExternalizeFunction aFunction)
|
sl@0
|
216 |
: iPtr(aPtr),iFunc(aFunction)
|
sl@0
|
217 |
/** Constructor.
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aPtr A pointer to the object for which externalisation is being done.
|
sl@0
|
220 |
@param aFunction The externalisation function. */
|
sl@0
|
221 |
{}
|
sl@0
|
222 |
inline const TAny* TStreamRef::Ptr() const
|
sl@0
|
223 |
/** Gets the pointer to the object to be externalised.
|
sl@0
|
224 |
|
sl@0
|
225 |
@return The object to be externalised. */
|
sl@0
|
226 |
{return iPtr;}
|
sl@0
|
227 |
inline TExternalizeFunction TStreamRef::Function() const
|
sl@0
|
228 |
/** Gets a pointer to the externalisation function.
|
sl@0
|
229 |
|
sl@0
|
230 |
@return The externalisation function. */
|
sl@0
|
231 |
{return iFunc;}
|
sl@0
|
232 |
inline void TStreamRef::ExternalizeL(RWriteStream& aStream) const
|
sl@0
|
233 |
/** Externalises the object to the specified write stream.
|
sl@0
|
234 |
|
sl@0
|
235 |
@param aStream The write stream. */
|
sl@0
|
236 |
{aStream.WriteRefL(*this);}
|
sl@0
|
237 |
|
sl@0
|
238 |
// Externalization and internalization functions
|
sl@0
|
239 |
IMPORT_C void ExternalizeL(TInt64 anInt64,RWriteStream& aStream);
|
sl@0
|
240 |
IMPORT_C void InternalizeL(TInt64& anInt64,RReadStream& aStream);
|
sl@0
|
241 |
|
sl@0
|
242 |
IMPORT_C void ExternalizeL(const TDesC8& aDes8,RWriteStream& aStream);
|
sl@0
|
243 |
IMPORT_C void ExternalizeL(const TDesC16& aDes16,RWriteStream& aStream);
|
sl@0
|
244 |
IMPORT_C void InternalizeL(TDes8& aDes8,RReadStream& aStream);
|
sl@0
|
245 |
IMPORT_C void InternalizeL(TDes16& aDes16,RReadStream& aStream);
|
sl@0
|
246 |
|
sl@0
|
247 |
IMPORT_C void ExternalizeL(const TCheckedUid& aUid,RWriteStream& aStream);
|
sl@0
|
248 |
IMPORT_C void InternalizeL(TCheckedUid& aUid,RReadStream& aStream);
|
sl@0
|
249 |
|
sl@0
|
250 |
IMPORT_C void ExternalizeL(TPoint aPoint,RWriteStream& aStream);
|
sl@0
|
251 |
IMPORT_C void ExternalizeL(TSize aSize,RWriteStream& aStream);
|
sl@0
|
252 |
IMPORT_C void ExternalizeL(const TRect& aRect,RWriteStream& aStream);
|
sl@0
|
253 |
IMPORT_C void InternalizeL(TPoint& aPoint,RReadStream& aStream);
|
sl@0
|
254 |
IMPORT_C void InternalizeL(TSize& aSize,RReadStream& aStream);
|
sl@0
|
255 |
IMPORT_C void InternalizeL(TRect& aRect,RReadStream& aStream);
|
sl@0
|
256 |
|
sl@0
|
257 |
IMPORT_C void ExternalizeL(const CBufBase& aBuf,RWriteStream& aStream);
|
sl@0
|
258 |
IMPORT_C void InternalizeL(CBufBase& aBuf,RReadStream& aStream);
|
sl@0
|
259 |
|
sl@0
|
260 |
IMPORT_C void ArrayExternalizeCountL(TInt aCount,RWriteStream& aStream);
|
sl@0
|
261 |
IMPORT_C void DoExternalizeAllL(const CArrayFixBase& anArray,RWriteStream& aStream,TExternalizer<TAny> anExter);
|
sl@0
|
262 |
IMPORT_C TInt ArrayInternalizeCountL(RReadStream& aStream);
|
sl@0
|
263 |
IMPORT_C void DoInternalizeAllL(CArrayFixBase& anArray,RReadStream& aStream,TInternalizer<TAny> anInter);
|
sl@0
|
264 |
|
sl@0
|
265 |
template <class T>
|
sl@0
|
266 |
inline void ExternalizeCountL(const CArrayFix<T>& anArray,RWriteStream& aStream)
|
sl@0
|
267 |
{ArrayExternalizeCountL(anArray.Count(),aStream);}
|
sl@0
|
268 |
template <class T>
|
sl@0
|
269 |
inline void ExternalizeAllL(const CArrayFix<T>& anArray,RWriteStream& aStream)
|
sl@0
|
270 |
{DoExternalizeAllL(anArray,aStream,TExternalizer<T>::Function());}
|
sl@0
|
271 |
template <class T>
|
sl@0
|
272 |
void InternalizeCountL(CArrayFix<T>& anArray,RReadStream& aStream)
|
sl@0
|
273 |
{
|
sl@0
|
274 |
TInt n=ArrayInternalizeCountL(aStream);
|
sl@0
|
275 |
anArray.ResizeL(n);
|
sl@0
|
276 |
}
|
sl@0
|
277 |
template <class T>
|
sl@0
|
278 |
inline void InternalizeAllL(CArrayFix<T>& anArray,RReadStream& aStream)
|
sl@0
|
279 |
{DoInternalizeAllL(anArray,aStream,TInternalizer<T>::Function());}
|
sl@0
|
280 |
|
sl@0
|
281 |
template <class T>
|
sl@0
|
282 |
void ExternalizeL(const CArrayFix<T>& anArray,RWriteStream& aStream)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
ExternalizeCountL(anArray,aStream);
|
sl@0
|
285 |
ExternalizeAllL(anArray,aStream);
|
sl@0
|
286 |
}
|
sl@0
|
287 |
template <class T>
|
sl@0
|
288 |
void InternalizeL(CArrayFix<T>& anArray,RReadStream& aStream)
|
sl@0
|
289 |
{
|
sl@0
|
290 |
InternalizeCountL(anArray,aStream);
|
sl@0
|
291 |
InternalizeAllL(anArray,aStream);
|
sl@0
|
292 |
}
|
sl@0
|
293 |
|
sl@0
|
294 |
template <class T>
|
sl@0
|
295 |
inline void ExternalizeL(const T* aPtr,RWriteStream& aStream)
|
sl@0
|
296 |
{aStream<<TStreamRef(aPtr,TExternalizer<T>::Function());}
|
sl@0
|
297 |
|
sl@0
|
298 |
template <class T>
|
sl@0
|
299 |
inline void DoExternalizeL(const T& anObject,RWriteStream& aStream,Externalize::Member)
|
sl@0
|
300 |
{anObject.ExternalizeL(aStream);}
|
sl@0
|
301 |
template <class T>
|
sl@0
|
302 |
inline void DoInternalizeL(T& anObject,RReadStream& aStream,Internalize::Member)
|
sl@0
|
303 |
{anObject.InternalizeL(aStream);}
|
sl@0
|
304 |
|
sl@0
|
305 |
template <class T>
|
sl@0
|
306 |
inline void DoExternalizeL(const T& anObject,RWriteStream& aStream,Externalize::Function)
|
sl@0
|
307 |
{ExternalizeL(anObject,aStream);}
|
sl@0
|
308 |
template <class T>
|
sl@0
|
309 |
inline void DoInternalizeL(T& anObject,RReadStream& aStream,Internalize::Function)
|
sl@0
|
310 |
{InternalizeL(anObject,aStream);}
|
sl@0
|
311 |
|
sl@0
|
312 |
// Externalization and internalization selectors
|
sl@0
|
313 |
inline Externalize::Member Externalization(const TAny*)
|
sl@0
|
314 |
{return Externalize::Member();}
|
sl@0
|
315 |
inline Internalize::Member Internalization(TAny*)
|
sl@0
|
316 |
{return Internalize::Member();}
|
sl@0
|
317 |
|
sl@0
|
318 |
inline Externalize::Function Externalization(const TDesC8*)
|
sl@0
|
319 |
{return Externalize::Function();}
|
sl@0
|
320 |
inline Externalize::Function Externalization(const TDesC16*)
|
sl@0
|
321 |
{return Externalize::Function();}
|
sl@0
|
322 |
inline Internalize::Function Internalization(TDes8*)
|
sl@0
|
323 |
{return Internalize::Function();}
|
sl@0
|
324 |
inline Internalize::Function Internalization(TDes16*)
|
sl@0
|
325 |
{return Internalize::Function();}
|
sl@0
|
326 |
|
sl@0
|
327 |
inline Externalize::Function Externalization(const CBufBase*)
|
sl@0
|
328 |
{return Externalize::Function();}
|
sl@0
|
329 |
inline Externalize::Function Externalization(const CArrayFixBase*)
|
sl@0
|
330 |
{return Externalize::Function();}
|
sl@0
|
331 |
inline Internalize::Function Internalization(CBufBase*)
|
sl@0
|
332 |
{return Internalize::Function();}
|
sl@0
|
333 |
inline Internalize::Function Internalization(CArrayFixBase*)
|
sl@0
|
334 |
{return Internalize::Function();}
|
sl@0
|
335 |
|
sl@0
|
336 |
template <class T>
|
sl@0
|
337 |
inline Externalize::Function Externalization(T*const*)
|
sl@0
|
338 |
{return Externalize::Function();}
|
sl@0
|
339 |
|
sl@0
|
340 |
// Input and output operators
|
sl@0
|
341 |
template <class T>
|
sl@0
|
342 |
inline RWriteStream& operator<<(RWriteStream& aStream,const T& anObject)
|
sl@0
|
343 |
{DoExternalizeL(anObject,aStream,Externalization(&anObject));return aStream;}
|
sl@0
|
344 |
template <class T>
|
sl@0
|
345 |
inline RReadStream& operator>>(RReadStream& aStream,T& anObject)
|
sl@0
|
346 |
{DoInternalizeL(anObject,aStream,Internalization(&anObject));return aStream;}
|
sl@0
|
347 |
|
sl@0
|
348 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TInt8& anInt8)
|
sl@0
|
349 |
{aStream.WriteInt8L(anInt8);return aStream;}
|
sl@0
|
350 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TInt16& anInt16)
|
sl@0
|
351 |
{aStream.WriteInt16L(anInt16);return aStream;}
|
sl@0
|
352 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TInt32& anInt32)
|
sl@0
|
353 |
{aStream.WriteInt32L(anInt32);return aStream;}
|
sl@0
|
354 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TUint8& aUint8)
|
sl@0
|
355 |
{aStream.WriteUint8L(aUint8);return aStream;}
|
sl@0
|
356 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TUint16& aUint16)
|
sl@0
|
357 |
{aStream.WriteUint16L(aUint16);return aStream;}
|
sl@0
|
358 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TUint32& aUint32)
|
sl@0
|
359 |
{aStream.WriteUint32L(aUint32);return aStream;}
|
sl@0
|
360 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TReal32& aReal32)
|
sl@0
|
361 |
{aStream.WriteReal32L(aReal32);return aStream;}
|
sl@0
|
362 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TReal64& aReal64)
|
sl@0
|
363 |
{aStream.WriteReal64L(aReal64);return aStream;}
|
sl@0
|
364 |
|
sl@0
|
365 |
inline RReadStream& operator>>(RReadStream& aStream,TInt8& anInt8)
|
sl@0
|
366 |
{anInt8=aStream.ReadInt8L();return aStream;}
|
sl@0
|
367 |
inline RReadStream& operator>>(RReadStream& aStream,TInt16& anInt16)
|
sl@0
|
368 |
{anInt16=aStream.ReadInt16L();return aStream;}
|
sl@0
|
369 |
inline RReadStream& operator>>(RReadStream& aStream,TInt32& anInt32)
|
sl@0
|
370 |
{anInt32=aStream.ReadInt32L();return aStream;}
|
sl@0
|
371 |
inline RReadStream& operator>>(RReadStream& aStream,TUint8& aUint8)
|
sl@0
|
372 |
{aUint8=aStream.ReadUint8L();return aStream;}
|
sl@0
|
373 |
inline RReadStream& operator>>(RReadStream& aStream,TUint16& aUint16)
|
sl@0
|
374 |
{aUint16=aStream.ReadUint16L();return aStream;}
|
sl@0
|
375 |
inline RReadStream& operator>>(RReadStream& aStream,TUint32& aUint32)
|
sl@0
|
376 |
{aUint32=aStream.ReadUint32L();return aStream;}
|
sl@0
|
377 |
inline RReadStream& operator>>(RReadStream& aStream,TReal32& aReal32)
|
sl@0
|
378 |
{aReal32=aStream.ReadReal32L();return aStream;}
|
sl@0
|
379 |
inline RReadStream& operator>>(RReadStream& aStream,TReal64& aReal64)
|
sl@0
|
380 |
{aReal64=aStream.ReadReal64L();return aStream;}
|
sl@0
|
381 |
|
sl@0
|
382 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TInt64& anInt64)
|
sl@0
|
383 |
{ExternalizeL(anInt64,aStream);return aStream;}
|
sl@0
|
384 |
inline RReadStream& operator>>(RReadStream& aStream,TInt64& anInt64)
|
sl@0
|
385 |
{InternalizeL(anInt64,aStream);return aStream;}
|
sl@0
|
386 |
|
sl@0
|
387 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TUid& aUid)
|
sl@0
|
388 |
{return aStream<<aUid.iUid;}
|
sl@0
|
389 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TCheckedUid& aUid)
|
sl@0
|
390 |
{ExternalizeL(aUid,aStream);return aStream;}
|
sl@0
|
391 |
inline RReadStream& operator>>(RReadStream& aStream,TUid& aUid)
|
sl@0
|
392 |
{return aStream>>aUid.iUid;}
|
sl@0
|
393 |
inline RReadStream& operator>>(RReadStream& aStream,TCheckedUid& aUid)
|
sl@0
|
394 |
{InternalizeL(aUid,aStream);return aStream;}
|
sl@0
|
395 |
|
sl@0
|
396 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TPoint& aPoint)
|
sl@0
|
397 |
{ExternalizeL(aPoint,aStream);return aStream;}
|
sl@0
|
398 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TSize& aSize)
|
sl@0
|
399 |
{ExternalizeL(aSize,aStream);return aStream;}
|
sl@0
|
400 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TRect& aRect)
|
sl@0
|
401 |
{ExternalizeL(aRect,aStream);return aStream;}
|
sl@0
|
402 |
inline RReadStream& operator>>(RReadStream& aStream,TPoint& aPoint)
|
sl@0
|
403 |
{InternalizeL(aPoint,aStream);return aStream;}
|
sl@0
|
404 |
inline RReadStream& operator>>(RReadStream& aStream,TSize& aSize)
|
sl@0
|
405 |
{InternalizeL(aSize,aStream);return aStream;}
|
sl@0
|
406 |
inline RReadStream& operator>>(RReadStream& aStream,TRect& aRect)
|
sl@0
|
407 |
{InternalizeL(aRect,aStream);return aStream;}
|
sl@0
|
408 |
|
sl@0
|
409 |
inline RWriteStream& operator<<(RWriteStream& aStream,const TStreamRef& aRef)
|
sl@0
|
410 |
{aRef.ExternalizeL(aStream);return aStream;}
|
sl@0
|
411 |
|