taskswitcher/server/inc/tsrunningappserver.h
changeset 116 305818acdca4
child 119 50e220be30d1
--- /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 <e32std.h>
+#include <e32base.h>
+#include <w32std.h>
+#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<MTsModel> &aDst, 
+                       const CTsServiceProvider& aServiceProvider);
+
+private:
+    CTsResourceManager* iResources;
+    CTsWindowGroupsMonitor* iMonitor;
+    CTsSerializedDataProvider* iSerializer;
+    CTsStorage* iStorage; 
+    CTsServiceProvider* iServiceProvider;
+    CTsRunningAppModel* iAppsModel;
+    CBase *iBacksteppingEngine;
+};
+
+#endif // RUNNINGAPPSERVER_H