os/ossrv/lowlevellibsandfws/pluginfw/Framework/ServerStartupMgrTest/StartupStateObserverObject.h
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 __STARTUP_STATE_OBSERVER_OBJECT_H__
17 #define __STARTUP_STATE_OBSERVER_OBJECT_H__
20 #include "StartupStateObserver.h"
25 A dummy startup state observer enabled class useful for unit testing.
27 class CStartupStateObserver: public CBase, public MStartupStateObserver
31 * Factory method to create an instance of the class
33 static CStartupStateObserver* NewL();
36 * Factory method to create an instance of the class
37 * The object is left on the CleanupStack;
39 static CStartupStateObserver* NewLC();
44 virtual ~CStartupStateObserver();
47 Internal state for CStartupStateObserver
53 SsoNoPluginsInternalized,
54 SsoCriticalPlugingsInternalized,
55 SsoAllPluginsInternalized
59 * the method used to process the SSA(Startup State Aware) event for the
60 * MStartupStateObserver object.
62 * @param aState the TDmDomainState passes into the MStartupStateObserver object.
64 virtual void ProcessSSAEventL(TStartupStateIdentifier aKnownState);
67 * Initialises the internal state of the object
69 void InitialiseEvent();
72 * Returns the current state of the object
73 * @return the current state
75 CStartupStateObserver::TSsoState GetState();
78 * Sets the current state of the object
79 * @param aState the new state of the object
81 void SetState(CStartupStateObserver::TSsoState aState);
85 * Default constructor. Make it private so the objects can only be
86 * instantiated with NewL
88 CStartupStateObserver();
91 * Initialises the object
100 #endif //__STARTUP_STATE_OBSERVER_OBJECT_H__