Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Save as expressly licensed to you by Symbian Software Ltd, all rights reserved.
22 #ifndef MBUFFERCONTROL_H
23 #define MBUFFERCONTROL_H
25 #include <a3f/a3fbase.h>
28 A CBufferFlushHandler's client must implement this interface
29 to be notified when when the flush process has finished
31 class MFlushHandlerObserver
34 virtual void FlushComplete(TInt aError) = 0;
38 This class allow interaction with the physical layer allowing flush physical buffers
40 class MStreamBufferControl
44 @return KErrNone error if flush operation is successful
46 virtual TInt FlushBuffers() = 0;
49 #endif // MBUFFERCONTROL_H