smartinstaller/bootstrap/inc/bootstrapinstallationobserver.h
branchADM
changeset 48 364021cecc90
equal deleted inserted replaced
47:3f419852be07 48:364021cecc90
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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 *     Declaration of CInstallObserver class.
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #include <e32base.h>
       
    22 
       
    23 class CStateMachine;
       
    24 
       
    25 class CInstallObserver : public CActive
       
    26 {
       
    27 public:
       
    28 	CInstallObserver(CStateMachine* aStateMachineObj);
       
    29 	virtual ~CInstallObserver();
       
    30 	void Start();
       
    31 
       
    32 private:
       
    33 	void RunL() ;
       
    34 	TInt RunError(TInt aError);
       
    35 	void DoCancel();
       
    36 
       
    37 private:
       
    38 	CStateMachine* iStateMachineObj;
       
    39 };