remoteconn_plat/locod_bearer_plugin_api/inc/locodbearerpluginobserver.h
branchRCL_3
changeset 19 0aa8cc770c8a
equal deleted inserted replaced
18:453dfc402455 19:0aa8cc770c8a
       
     1 /*
       
     2 * Copyright (c) 2006 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:  This is the LCD Bearer Plugin observer interface definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef M_LOCODBEARERPLUGINOBSERVER_H
       
    20 #define M_LOCODBEARERPLUGINOBSERVER_H
       
    21 
       
    22 #include "locodbearer.h"
       
    23 
       
    24 /**
       
    25  *  LCD Bearer Plugin Observer interface class
       
    26  *
       
    27  *  This is the bearer plugin observer interface definition used by LCD
       
    28  *  Bearer Plugins to inform the daemon about the plugin's event.
       
    29  *
       
    30  *  @euser.lib
       
    31  *  @since S60 v3.2
       
    32  */
       
    33 class MLocodBearerPluginObserver
       
    34     {
       
    35 public:
       
    36 
       
    37     /**
       
    38      * This is a callback function used by the plugins to inform when the
       
    39      * bearer's availability changes.
       
    40      *
       
    41      * @since S60 v3.2
       
    42      * @param  aBearer the bearer which calls this nothification
       
    43      * @param  aStatus the status of this bearer, ETrue if it is available;
       
    44      *                 EFalse otherwise.
       
    45      */
       
    46     virtual void NotifyBearerStatus(TLocodBearer aBearer, TBool aStatus) = 0;
       
    47     };
       
    48 
       
    49 #endif // M_LOCODBEARERPLUGINOBSERVER_H