genericservices/taskscheduler/SCHSVR/SchSSAObserver.h
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef __SCHSSAOBSERVER_H__
       
    17 #define __SCHSSAOBSERVER_H__
       
    18 
       
    19 #include <startup.hrh>
       
    20 
       
    21 static const TStartupStateIdentifier KSchFinalStartupState = EStartupStateNonCritical;
       
    22 
       
    23 /**
       
    24 The abstract interface used as a base for all classes that wish to
       
    25 be notified of system startup state changes
       
    26 
       
    27 @internalComponent
       
    28 */
       
    29 class MSchStartupStateObserver
       
    30 	{
       
    31 public:
       
    32 	// the method used to process the Startup State change for the 
       
    33 	// MSchStartupStateObserver objects.
       
    34 	virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState)=0;	
       
    35 	};
       
    36 #endif // __SCHSSAOBSERVER_H__