mmserv/voipaudioservices/VoIPIntfc/src/VoIPJBDataBuffer.cpp
changeset 0 71ca22bcf22a
child 53 eabc8c503852
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2008 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:  VOIP Audio Services
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include "VoIPJBDataBufferImpl.h"
       
    20 
       
    21 
       
    22 // ---------------------------------------------------------------------------
       
    23 // Constructor
       
    24 // ---------------------------------------------------------------------------
       
    25 //
       
    26 CVoIPJBDataBuffer::CVoIPJBDataBuffer()
       
    27     {
       
    28     }
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // Destructor
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 EXPORT_C CVoIPJBDataBuffer::~CVoIPJBDataBuffer()
       
    35     {
       
    36     }
       
    37 
       
    38 // ---------------------------------------------------------------------------
       
    39 // 2-nd phase constructor
       
    40 // ---------------------------------------------------------------------------
       
    41 //
       
    42 void CVoIPJBDataBuffer::ConstructL(CVoIPJBDataBufferImpl* aJBDataBufferImpl)
       
    43     {
       
    44     iVoIPJBDataBufferImpl = aJBDataBufferImpl;
       
    45     }
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // CVoIPJBDataBuffer::SetBufferSequence
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 EXPORT_C void CVoIPJBDataBuffer::SetBufferSequence(const TUint aBufferSeq)
       
    52     {
       
    53     iVoIPJBDataBufferImpl->SetBufferSequence(aBufferSeq);
       
    54     }
       
    55 
       
    56 // ---------------------------------------------------------------------------
       
    57 // CVoIPJBDataBuffer::GetBufferSequence
       
    58 // ---------------------------------------------------------------------------
       
    59 //
       
    60 EXPORT_C void CVoIPJBDataBuffer::GetBufferSequence(TUint& aBufferSeq)
       
    61     {
       
    62     iVoIPJBDataBufferImpl->GetBufferSequence(aBufferSeq);
       
    63     }
       
    64 
       
    65 
       
    66 // End of file