idlefw/inc/framework/aistateidle.h
branchRCL_3
changeset 9 d0529222e3f0
parent 4 1a2a00e78665
child 10 5ef93ea513cb
child 18 bd874ee5e5e2
equal deleted inserted replaced
4:1a2a00e78665 9:d0529222e3f0
     1 /*
       
     2 * Copyright (c) 2005-2006 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:  State idle
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef T_AISTATEIDLE_H
       
    20 #define T_AISTATEIDLE_H
       
    21 
       
    22 #include "aipluginstate.h"
       
    23 #include "aipluginstatemachine.h"
       
    24 
       
    25 /**
       
    26  * @ingroup group_aifw
       
    27  * 
       
    28  * Idle state.
       
    29  * 
       
    30  *  @lib aifw
       
    31  *  @since S60 3.2
       
    32  */
       
    33 NONSHARABLE_CLASS( TAiStateIdle ) : public MAiPluginState
       
    34     {
       
    35 public:
       
    36     // Construction
       
    37     
       
    38     TAiStateIdle();
       
    39     
       
    40     // from MAiPluginState
       
    41     
       
    42     void Enter( MAiPluginStateMachine& aStateMachine,
       
    43                 TAiStateChanges aStateChange );
       
    44     
       
    45     TBool HandleEvent( MAiPluginStateMachine& aStateMachine,
       
    46                       TAiStateChanges aStateChange );
       
    47     
       
    48     void Exit( MAiPluginStateMachine& aStateMachine,
       
    49                TAiStateChanges aStateChange );
       
    50     
       
    51     };
       
    52 
       
    53 #endif // T_AISTATEIDLE_H