appinstaller/AppMngr2/inc/appmngr2infomakerobserver.h
changeset 80 9dcba1ee99f7
parent 77 d1838696558c
equal deleted inserted replaced
77:d1838696558c 80:9dcba1ee99f7
     1 /*
       
     2 * Copyright (c) 2008 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:   Creates info objects asynchronously
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_APPMNGR2INFOMAKEROBSERVER_H
       
    20 #define C_APPMNGR2INFOMAKEROBSERVER_H
       
    21 
       
    22 class CAppMngr2InfoMaker;
       
    23 class CAppMngr2AppInfo;
       
    24 class CAppMngr2PackageInfo;
       
    25 
       
    26 
       
    27 class MAppMngr2InfoMakerObserver
       
    28     {
       
    29 public:
       
    30     virtual void NewAppsCreatedL( const CAppMngr2InfoMaker& aMaker,
       
    31             RPointerArray<CAppMngr2AppInfo>& aAppInfos ) = 0;
       
    32     virtual void ErrorInCreatingAppsL( const CAppMngr2InfoMaker& aMaker,
       
    33             TInt aError ) = 0;
       
    34     virtual void NewPackagesCreatedL( const CAppMngr2InfoMaker& aMaker,
       
    35             RPointerArray<CAppMngr2PackageInfo>& aPackageInfos ) = 0;
       
    36     virtual void ErrorInCreatingPackagesL( const CAppMngr2InfoMaker& aMaker,
       
    37             TInt aError ) = 0;
       
    38     };
       
    39 
       
    40 #endif  // C_APPMNGR2INFOMAKEROBSERVER_H
       
    41