Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __SCHSSAOBSERVER_H__
17 #define __SCHSSAOBSERVER_H__
19 #include <startup.hrh>
21 static const TStartupStateIdentifier KSchFinalStartupState = EStartupStateNonCritical;
24 The abstract interface used as a base for all classes that wish to
25 be notified of system startup state changes
29 class MSchStartupStateObserver
32 // the method used to process the Startup State change for the
33 // MSchStartupStateObserver objects.
34 virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState)=0;
36 #endif // __SCHSSAOBSERVER_H__