diff -r dbfb5e38438b -r 305818acdca4 taskswitcher/server/inc/tsrunningappserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/taskswitcher/server/inc/tsrunningappserver.h Mon Sep 13 13:26:33 2010 +0300 @@ -0,0 +1,66 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ +#ifndef RUNNINGAPPSERVER_H +#define RUNNINGAPPSERVER_H + +// INCLUDES +#include +#include +#include +#include "tsdataobserver.h" + +class CTsResourceManager; +class CTsWindowGroupsMonitor; +class MTsModel; +class CTsRunningAppModel; +class CTsStorage; +class CTsSerializedDataProvider; +class CTsServiceProvider; + +/** + * CRunningAppServer + * + */ +class CTsRunningAppServer : public CServer2, + public MTsDataObserver +{ +public: + ~CTsRunningAppServer(); + + static CTsRunningAppServer* NewLC(); + +public: //MHsDataObserver + void DataChanged(); + +private: + CTsRunningAppServer(); + void ConstructL(); + CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMsg) const; + void addProviders( RPointerArray &aDst, + const CTsServiceProvider& aServiceProvider); + +private: + CTsResourceManager* iResources; + CTsWindowGroupsMonitor* iMonitor; + CTsSerializedDataProvider* iSerializer; + CTsStorage* iStorage; + CTsServiceProvider* iServiceProvider; + CTsRunningAppModel* iAppsModel; + CBase *iBacksteppingEngine; +}; + +#endif // RUNNINGAPPSERVER_H