lowlevellibsandfws/pluginfw/Framework/frame/StartupStateObserver.h
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /**
       
     2 * Copyright (c) 2005-2009 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 * The definitions of MStartupStateObserver.
       
    16 * This file contains all the APIs to implement MStartupStateObserver.  
       
    17 * 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 /**
       
    24  @file
       
    25  @internalComponent
       
    26 */
       
    27 #ifndef STARTUPSTATEOBSERVER_H
       
    28 #define STARTUPSTATEOBSERVER_H
       
    29 #include <startup.hrh>
       
    30 
       
    31 /** 
       
    32 The abstract interface used as a base for all classes that wish to be notified of system startup state changes in ECOM.
       
    33 
       
    34 @internalComponent
       
    35 */
       
    36 class MStartupStateObserver
       
    37 	{
       
    38 public:
       
    39 	/**
       
    40 	* the method used to process the SSA(Startup State Aware) event for the 
       
    41 	* MStartupStateObserver object.
       
    42 	* 
       
    43 	* @param aKnownState the TDmDomainState passes into the MStartupStateObserver object.
       
    44 	*/
       
    45 	virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState)=0;	
       
    46 	};
       
    47 #endif
       
    48