wlanutilities/wlansniffer/model/inc/wsfbrowserlaunchobserver.h
branchRCL_3
changeset 24 63be7eb3fc78
parent 23 b852595f5cbe
child 25 f28ada11abbf
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
     1 /*
       
     2 * Copyright (c) 2007-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:  Class header for MWsfBrowserLaunchObserver
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef M_WSFBROWSERLAUNCHOBSERVER_H
       
    22 #define M_WSFBROWSERLAUNCHOBSERVER_H
       
    23 
       
    24 
       
    25 
       
    26 //  CLASS DEFINITION
       
    27 /**
       
    28  * Interface class to get notified about browser launch results
       
    29  *
       
    30  * @since S60 5.0
       
    31  */
       
    32 class MWsfBrowserLaunchObserver
       
    33     {
       
    34 
       
    35     public:
       
    36         /**
       
    37         * Called if the browser launch failed for some reason
       
    38         * @since S60 5.0
       
    39         * @param aError System-wide error code
       
    40         */
       
    41         virtual void BrowserLaunchFailed( TInt aError ) = 0;
       
    42 
       
    43         /**
       
    44         * Called if the launch has been completed successfully
       
    45         * @since S60 5.0
       
    46         */
       
    47         virtual void BrowserLaunchCompleteL() = 0;
       
    48 
       
    49         /**
       
    50         * Called when the previously launched browser exits
       
    51         * @since S60 5.0
       
    52         */
       
    53         virtual void BrowserExitL() = 0;
       
    54         
       
    55     };
       
    56 
       
    57 
       
    58 #endif // M_WSFBROWSERLAUNCHOBSERVER_H