phoneapp/phoneuistates/tsrc/common/cphonegsmincallstub.cpp
changeset 77 2be0b271d017
equal deleted inserted replaced
72:c76a0b1755b9 77:2be0b271d017
       
     1 /*
       
     2 * Copyright (c) 2005-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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "cphonegsmincall.h"
       
    21 #include "phoneappcommands.hrh"
       
    22 
       
    23 CPhoneGsmInCall::CPhoneGsmInCall(
       
    24         MPhoneStateMachine* aStateMachine, 
       
    25         MPhoneViewCommandHandle* aViewCommandHandle,
       
    26         MPhoneCustomization* aPhoneCustomization ): 
       
    27         CPhoneStateInCall( aStateMachine, aViewCommandHandle, aPhoneCustomization )
       
    28     {
       
    29     }
       
    30 
       
    31 CPhoneGsmInCall::~CPhoneGsmInCall()
       
    32     {
       
    33     
       
    34     }
       
    35 
       
    36 void CPhoneGsmInCall::ConstructL()
       
    37     {
       
    38     
       
    39     }
       
    40 
       
    41 TInt CPhoneGsmInCall::HandleCommandL( TInt aCommand )
       
    42     {
       
    43     switch( aCommand )
       
    44         {
       
    45         case EPhoneCmdOptions:
       
    46         break;
       
    47         default:
       
    48         break;
       
    49         }
       
    50     
       
    51     }
       
    52 
       
    53 void CPhoneGsmInCall::HandlePhoneEngineMessageL(
       
    54         const TInt /*aMessage*/, 
       
    55         TInt /*aCallId*/ )
       
    56     {
       
    57     
       
    58     }
       
    59 
       
    60 void CPhoneGsmInCall::HandleColpNoteL( TInt /*aCallId*/ )
       
    61     {
       
    62     
       
    63     }
       
    64 
       
    65 void CPhoneGsmInCall::BringIncomingToForegroundL()
       
    66     {
       
    67     
       
    68     }
       
    69 
       
    70 
       
    71 //  End of File  
       
    72