wlan_bearer/wlanengine/wlan_symbian/wlanengine_symbian_3.1/inc/wlanbgscancommandlistener.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 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 the License "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:  MWlanBgScanCommandListener class declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 1 %
       
    20 */
       
    21 
       
    22 #ifndef M_WLANBGSCANCOMMANDLISTENER_H
       
    23 #define M_WLANBGSCANCOMMANDLISTENER_H
       
    24 
       
    25 #include <e32base.h>
       
    26 
       
    27 /**
       
    28  *  MWlanBgScanCommandListener class.
       
    29  *  
       
    30  *  Command queue uses this interface to deliver the received
       
    31  *  commands to listener. The listener has to derive from this 
       
    32  *  class and implement the defined methods.
       
    33  * 
       
    34  *  @since S60 v5.2
       
    35  */
       
    36  
       
    37 NONSHARABLE_CLASS( MWlanBgScanCommandListener )
       
    38     {
       
    39 public:
       
    40     
       
    41     /**
       
    42      * DoSetInterval.
       
    43      * This method is called by the command queue when
       
    44      * SetInterval request is processed.
       
    45      * 
       
    46      * @since S60 v5.2
       
    47      * @param aNewInterval new interval to be taken into use
       
    48      */
       
    49     virtual void DoSetInterval( TUint32 aNewInterval ) = 0;
       
    50     };
       
    51     
       
    52 #endif // M_WLANBGSCANCOMMANDLISTENER_H