Update contrib.
3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
5 * This component and the accompanying materials are made available
6 * under the terms of the License "Eclipse Public License v1.0"
7 * which accompanies this distribution, and is available
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
29 /** The seek position is calculated relative to the beginning of the
32 /** The seek position is calculated relative to the end of the stream.*/
34 /** The seek position is calculated relative to the existing read or
35 write mark in the stream. */
38 typedef std::streampos TStreamPos;
43 // Symbian definition does not have a virtual destructor and relies on DoRelease virtual...
44 // We define one to avoid compiler warnings
45 virtual ~MStreamBuf() {}
47 enum TRead {ERead=0x01};
48 enum TWrite {EWrite=0x02};
51 TInt ReadL(TAny *aPtr,TInt aMaxLength);
52 void WriteL(const TUint8* aPtr,TInt aLength);
54 void SeekL(TMark aMark,TStreamPos aPos);
55 TStreamPos SeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset=0);
56 TStreamPos SeekL(TRead,TStreamLocation aLocation,TInt anOffset=0);
57 TStreamPos SeekL(TWrite,TStreamLocation aLocation,TInt anOffset=0);
58 TStreamPos SeekL(TRead,TInt anOffset);
59 TStreamPos SeekL(TWrite,TInt anOffset);
61 TStreamPos TellL(TRead) const;
62 TStreamPos TellL(TWrite) const;
69 virtual TInt DoReadL(TAny *aPtr,TInt aMaxLength) = 0;
70 virtual void DoWriteL(const TUint8* aPtr,TInt aLength) = 0;
71 virtual IMPORT_C TStreamPos DoSeekL(TMark aMark,TStreamLocation aLocation,TInt anOffset);
73 virtual void DoRelease();