sl@0: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // Class RMemWriteStream sl@0: inline RMemWriteStream::RMemWriteStream(const MExternalizer& anExter) sl@0: : RWriteStream(anExter) sl@0: /** sl@0: Constructs a write stream with an externalizer. For example, CStoreMap implements sl@0: MExternalizer. sl@0: sl@0: @param anExter Specifies an externalizer. sl@0: @see MExternalizer sl@0: @see CStoreMap sl@0: */ sl@0: {} sl@0: sl@0: // Class RDesWriteStream sl@0: inline RDesWriteStream::RDesWriteStream(const MExternalizer& anExter) sl@0: : RWriteStream(anExter) sl@0: /** sl@0: Constructs a write stream with an externalizer. For example, CStoreMap implements sl@0: MExternalizer. sl@0: sl@0: @param anExter Specifies an externalizer. sl@0: @see MExternalizer sl@0: @see CStoreMap sl@0: */ sl@0: {} sl@0: sl@0: // Class RBufWriteStream sl@0: inline RBufWriteStream::RBufWriteStream(const MExternalizer& anExter) sl@0: : RWriteStream(anExter) sl@0: /** sl@0: Constructs a write stream with an externalizer. For example, CStoreMap implements sl@0: MExternalizer. sl@0: sl@0: @param anExter Specifies an externalizer. sl@0: @see MExternalizer sl@0: @see CStoreMap sl@0: */ sl@0: {} sl@0: sl@0: inline void RBufWriteStream::Append(CBufBase& aBuf) sl@0: /** sl@0: Open a stream that writes to the dynamic buffer specified in the aBuf argument sl@0: using insert mode. sl@0: sl@0: @param aBuf The dynamic buffer that will be the source of this stream. sl@0: @see RBufWriteStream::Insert sl@0: */ sl@0: {Insert(aBuf,aBuf.Size());} sl@0: