os/mm/mmhais/refacladapt/src/shared/minputport.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 
    20 #ifndef MINPUTPORT_H
    21 #define MINPUTPORT_H
    22 
    23 #include <a3f/a3fbase.h>
    24 
    25 class CMMFBuffer;
    26 class MOutputPort;
    27 
    28 /**
    29  */
    30 class MInputPort
    31 	{
    32 	public:
    33 	/**
    34 	* @param
    35 	*/
    36 	virtual TInt GetInputPort(MInputPort*& aInputPort) = 0;
    37 	/**
    38 	* @param
    39 	*/
    40 	virtual TInt EmptyBuffer(CMMFBuffer* aBuffer, MOutputPort* aSupplier)=0;
    41 
    42 	/**
    43 	* @param 
    44 	*/
    45 	virtual TInt BufferFilled(CMMFBuffer* aBuffer)=0;
    46 
    47 	/**
    48 	*/
    49 	virtual TInt SetOutput(MOutputPort* aOutput)=0;
    50 
    51 	/**
    52 	* @param 
    53 	*/
    54 	virtual TInt RemoveOutput(MOutputPort* aOutput)=0;
    55 
    56 	};
    57 
    58 #endif // MINPUTPORT_H