voipplugins/accountcreationplugin/inc/maccountcreationpluginobserver.h
branchRCL_3
changeset 21 f742655b05bf
parent 20 65a3ef1d5bd0
child 22 d38647835c2e
equal deleted inserted replaced
20:65a3ef1d5bd0 21:f742655b05bf
     1 /*
       
     2 * Copyright (c) 2007-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:  Header file for MAccountCreationPluginObserver
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MACCOUNTCREATIONPLUGINOBSERVER_H
       
    20 #define MACCOUNTCREATIONPLUGINOBSERVER_H
       
    21 
       
    22 class MAccountCreationPluginObserver
       
    23     {
       
    24 public:
       
    25     /**
       
    26      * Notifies observer about AIW events.
       
    27      *
       
    28      * @since S60 v3.2
       
    29      * @param aError for system wide error code
       
    30      */ 
       
    31     virtual void NotifyAiwEventL( TInt aError ) = 0;
       
    32     
       
    33     
       
    34     /**
       
    35      * Notifies observer about downloaded sis file.
       
    36      *
       
    37      * @since S60 v5.0
       
    38      * @param aFileName sis file name
       
    39      */ 
       
    40     virtual void NotifySISDownloaded( TDesC& aFileName ) = 0;
       
    41 
       
    42     };
       
    43 
       
    44 #endif // MACCOUNTCREATIONPLUGINOBSERVER_H
       
    45 
       
    46 // End of file.