activityfw/storage/server/inc/afapplicationsstorage.h
changeset 109 e0aa398e6810
child 119 50e220be30d1
equal deleted inserted replaced
104:9b022b1f357c 109:e0aa398e6810
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 #ifndef AFAPPLICATIONSSTORAGE_H
       
    18 #define AFAPPLICATIONSSTORAGE_H
       
    19 
       
    20 #include <e32base.h>
       
    21 #include "afstorage.h"
       
    22 #include "afapplicationsobserver.h"
       
    23 #include "afapplicationsregistry.h"
       
    24 
       
    25 
       
    26 class CAfApplicationsStorage: public CBase,
       
    27                                public MAfApplicationsObserver
       
    28 {
       
    29 public:
       
    30     static CAfApplicationsStorage* NewL(CAfStorage& storage, const MAfApplicationsRegistry& provider);
       
    31     ~CAfApplicationsStorage();
       
    32     void applicationsChanged();
       
    33     
       
    34 private:
       
    35     CAfApplicationsStorage(CAfStorage& storage, const MAfApplicationsRegistry& provider);
       
    36     void deleteActivityL(TUid appId);
       
    37 private:
       
    38     CAfStorage& mStorage;
       
    39     const MAfApplicationsRegistry &mProvider;
       
    40 };
       
    41 
       
    42 #endif // AFAPPLICATIONSSTORAGE_H