internetradio2.0/mediaengineinc/irbuffercontainer.inl
changeset 14 896e9dbc5f19
parent 12 608f67c22514
child 15 065198191975
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
     1 /*
       
     2 * Copyright (c) 2006-2007 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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef IR_BUFFERCONTAINER_INL
       
    21 #define IR_BUFFERCONTAINER_INL
       
    22 
       
    23 // -----------------------------------------------------------------------------	
       
    24 //  Des returns the Address of the chunk;
       
    25 //  Owned by CIRBufferContainer Class
       
    26 // @return address
       
    27 // -----------------------------------------------------------------------------
       
    28 //
       
    29  inline TUint8* CIRBufferContainer::Des() const
       
    30 	{
       
    31 	return iDataAddress;	
       
    32 	} 
       
    33 	 
       
    34 // -----------------------------------------------------------------------------	
       
    35 //  Size returns the size of the chunk;
       
    36 //  Owned by CIRBufferContainer Class
       
    37 //  @return size of chunk
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40  inline TInt CIRBufferContainer::Size() const
       
    41 	{
       
    42 	return iSize;	
       
    43 	}
       
    44 	
       
    45 #endif