1.1 --- a/epoc32/include/s32mem.inl Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/s32mem.inl Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -1,9 +1,9 @@
1.4 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 // All rights reserved.
1.6 // This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 +// under the terms of "Eclipse Public License v1.0"
1.9 // which accompanies this distribution, and is available
1.10 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.11 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.12 //
1.13 // Initial Contributors:
1.14 // Nokia Corporation - initial contribution.
1.15 @@ -16,47 +16,49 @@
1.16 // Class RMemWriteStream
1.17 inline RMemWriteStream::RMemWriteStream(const MExternalizer<TStreamRef>& anExter)
1.18 : RWriteStream(anExter)
1.19 -/**
1.20 -Constructs a write stream with an externalizer. For example, CStoreMap implements
1.21 -MExternalizer<TStreamRef>.
1.22 +/**
1.23 +Constructs a write stream with an externalizer. For example, CStoreMap implements
1.24 +MExternalizer<TStreamRef>.
1.25
1.26 -@param anExter Specifies an externalizer.
1.27 +@param anExter Specifies an externalizer.
1.28 @see MExternalizer
1.29 -@see CStoreMap
1.30 +@see CStoreMap
1.31 */
1.32 {}
1.33
1.34 // Class RDesWriteStream
1.35 inline RDesWriteStream::RDesWriteStream(const MExternalizer<TStreamRef>& anExter)
1.36 : RWriteStream(anExter)
1.37 -/**
1.38 -Constructs a write stream with an externalizer. For example, CStoreMap implements
1.39 -MExternalizer<TStreamRef>.
1.40 +/**
1.41 +Constructs a write stream with an externalizer. For example, CStoreMap implements
1.42 +MExternalizer<TStreamRef>.
1.43
1.44 -@param anExter Specifies an externalizer.
1.45 +@param anExter Specifies an externalizer.
1.46 @see MExternalizer
1.47 -@see CStoreMap
1.48 +@see CStoreMap
1.49 */
1.50 {}
1.51
1.52 // Class RBufWriteStream
1.53 inline RBufWriteStream::RBufWriteStream(const MExternalizer<TStreamRef>& anExter)
1.54 : RWriteStream(anExter)
1.55 -/**
1.56 -Constructs a write stream with an externalizer. For example, CStoreMap implements
1.57 -MExternalizer<TStreamRef>.
1.58 +/**
1.59 +Constructs a write stream with an externalizer. For example, CStoreMap implements
1.60 +MExternalizer<TStreamRef>.
1.61
1.62 -@param anExter Specifies an externalizer.
1.63 +@param anExter Specifies an externalizer.
1.64 @see MExternalizer
1.65 -@see CStoreMap
1.66 +@see CStoreMap
1.67 */
1.68 {}
1.69 -
1.70 +
1.71 inline void RBufWriteStream::Append(CBufBase& aBuf)
1.72 -/**
1.73 -Open a stream that writes to a dynamic buffer using insert mode.
1.74 +/**
1.75 +Open a stream that writes to the dynamic buffer specified in the aBuf argument
1.76 +using insert mode.
1.77
1.78 -@param aBuf The dynamic buffer that will be the sink of this stream.
1.79 +@param aBuf The dynamic buffer that will be the source of this stream.
1.80 @see RBufWriteStream::Insert
1.81 */
1.82 {Insert(aBuf,aBuf.Size());}
1.83 +