wlan_bearer/wlanldd/wlan_common/umac_common/inc/UmacTimerClient.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     1 /*
       
     2 * Copyright (c) 2005-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 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:   timer client callback interface
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 6 %
       
    20 */
       
    21 
       
    22 #ifndef WLANTIMERCLIENT_H
       
    23 #define WLANTIMERCLIENT_H
       
    24 
       
    25 /**
       
    26  *  timer client callback interface
       
    27  *
       
    28  *
       
    29  *  @lib wlanumac.lib
       
    30  *  @since S60 v3.1
       
    31  */
       
    32 class MWlanTimerClient 
       
    33     {
       
    34 
       
    35 public: // New functions
       
    36 
       
    37     /**
       
    38      * timer callback
       
    39      *
       
    40      * @since S60 v3.1
       
    41      */
       
    42     virtual void OnTimeout( TWlanTimer aTimer ) = 0;
       
    43 
       
    44     };
       
    45 
       
    46 #endif      // WLANTIMERCLIENT_H
       
    47