phoneapp/phoneuistates/tsrc/common/cphonestatestartupstub.cpp
changeset 77 2be0b271d017
child 76 cfea66083b62
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 "cphonestatestartup.h"
       
    21 #include "phoneappcommands.hrh"
       
    22 
       
    23 CPhoneStateStartup::CPhoneStateStartup(
       
    24         MPhoneStateMachine* aStateMachine, 
       
    25         MPhoneViewCommandHandle* aViewCommandHandle,
       
    26         MPhoneCustomization* aPhoneCustomization ): 
       
    27         CPhoneState( aStateMachine, aViewCommandHandle, aPhoneCustomization )
       
    28     {
       
    29     }
       
    30 
       
    31 CPhoneStateStartup::~CPhoneStateStartup()
       
    32     {
       
    33     
       
    34     }
       
    35 
       
    36 void CPhoneStateStartup::ConstructL()
       
    37     {
       
    38     
       
    39     }
       
    40 
       
    41 void CPhoneStateStartup::HandlePhoneEngineMessageL(
       
    42     const TInt /*aMessage*/, 
       
    43     TInt /*aCallId*/ )
       
    44     {
       
    45     
       
    46     }
       
    47 
       
    48 void CPhoneStateStartup::HandleKeyMessageL(
       
    49     TPhoneKeyEventMessages /*aMessage*/,
       
    50     TStdScanCode /*aScanCode*/ )
       
    51     {
       
    52     
       
    53     }
       
    54 
       
    55 void CPhoneStateStartup::HandleKeyEventL(
       
    56     const TKeyEvent& /*aKeyEvent*/,
       
    57     TEventCode /*aEventCode*/ )
       
    58     {
       
    59    
       
    60     }
       
    61 
       
    62 void CPhoneStateStartup::HandleIdleForegroundEventL()
       
    63     {
       
    64     
       
    65     }
       
    66 
       
    67 void CPhoneStateStartup::HandlePhoneStartupL()
       
    68     {
       
    69     
       
    70     }
       
    71 
       
    72 //  End of File  
       
    73