taskswitcher/contextengine/hgfswserver/engine/inc/hgfsalwaysshownapplist.h
changeset 4 4d54b72983ae
parent 3 fb3763350a08
child 5 c743ef5928ba
--- a/taskswitcher/contextengine/hgfswserver/engine/inc/hgfsalwaysshownapplist.h	Fri Jan 22 09:35:14 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,75 +0,0 @@
-/*
- * ============================================================================
- *  Name        : hgfsalwaysshownapplist.h
- *  Part of     : Hg Teleport
- *  Description : Non-closeable app list class
- *  Version     : %version: sa1spcx1#2 %
- *
- *  Copyright 2008 Nokia.  All rights reserved.
- *  This material, including documentation and any related computer
- *  programs, is protected by copyright controlled by Nokia.  All
- *  rights are reserved.  Copying, including reproducing, storing,
- *  adapting or translating, any or all of this material requires the
- *  prior written consent of Nokia.  This material also contains
- *  confidential information which may not be disclosed to others
- *  without the prior written consent of Nokia.
- * ============================================================================
- */
-
-#ifndef HGFSALWAYSSHOWNAPPLIST_H
-#define HGFSALWAYSSHOWNAPPLIST_H
-
-#include <e32base.h>
-#include <apgcli.h>
-
-/**
- * List of always shown applications.
- */
-NONSHARABLE_CLASS( CHgFsAlwaysShownAppList ) : public CBase
-    {
-public:
-    /**
-     * Two-phased constructor.
-     *
-     * @param aParent
-     */
-    static CHgFsAlwaysShownAppList* NewL();
-
-    /*
-     * Default C++ constructor
-     */
-    CHgFsAlwaysShownAppList();
-
-    /*
-     * Destructor
-     */
-    ~CHgFsAlwaysShownAppList();
-
-    /**
-     * Initializes the list that stores applications that are always
-     * shown in the fast swap provided they have been installed
-     * in the phone rom
-     * @return   -
-     */
-    void InitializeAlwaysShownListL();
-
-    /**
-     * If application uid exists in the always shown application list
-     * @return   ETrue  application uid exists in the list
-     *           EFalse application uid doesn't exist in the list
-     * @param    TUid aAppUid the application uid
-     */
-    TBool IsAlwaysShownApp( TUid aAppUid );
-
-    /**
-     * Returning reference to iAppList
-     */
-    RArray<TUid>& AppList() { return iAppList; }
-
-private:    
-    void ConstructL();
-    RArray<TUid> iAppList;
-    RApaLsSession iAppArcSession;
-    };
-
-#endif