Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Defines Mixin class for a BufferManager
18 #ifndef __EZBUFFERMANAGER_H__
19 #define __EZBUFFERMANAGER_H__
24 Interface class to manage input and output buffers for compression and de-compression
29 class MEZBufferManager
34 Initialise the stream with input and output buffers and starts reading
36 @param aZStream the stream to initialise
38 virtual void InitializeL(CEZZStream &aZStream) = 0;
41 Set the stream's input buffer and starts reading
43 @param aZStream the steam whose input buffer to set
45 virtual void NeedInputL(CEZZStream &aZStream) = 0;
48 Set the stream's output buffer and start writing
50 @param aZStream the steam whose output buffer to set
52 virtual void NeedOutputL(CEZZStream &aZStream) = 0;
55 Finish writing to the stream
57 @param aZStream the stream to complete writing to
59 virtual void FinalizeL(CEZZStream &aZStream) = 0;