idlefw/inc/framework/aistatemanager.h
changeset 0 79c6a41cd166
child 9 d0529222e3f0
child 54 666a2952b5b3
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     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 manager base class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_AISTATEMANAGER_H
       
    20 #define M_AISTATEMANAGER_H
       
    21 
       
    22 #include "aipluginstatemachine.h"
       
    23 
       
    24 /**
       
    25  *  description
       
    26  * 
       
    27  *  @lib aifw
       
    28  *  @since S60 3.2
       
    29  */
       
    30 class MAiStateManager
       
    31     {
       
    32     
       
    33     public:
       
    34     
       
    35         /**
       
    36          * System status observers use this method to report status variable 
       
    37          * changes to state manager.
       
    38          *
       
    39          * @param TAiStateChanges aState the state that has changed.
       
    40          */
       
    41         virtual void ReportStateChange( TAiStateChanges aState ) = 0;
       
    42     
       
    43     protected:
       
    44     
       
    45         ~MAiStateManager(){}
       
    46     
       
    47     };
       
    48  
       
    49 #endif // M_AISTATEMANAGER_H
       
    50 
       
    51 // End of File.