wlan_plat/wlan_osa_api/inc/wlantimerclient.h
changeset 0 c40eb8fe8501
equal deleted inserted replaced
-1:000000000000 0:c40eb8fe8501
       
     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:  timer client callback interface
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 4 %
       
    20 */
       
    21 
       
    22 #ifndef WLANTIMERCLIENT_H
       
    23 #define WLANTIMERCLIENT_H
       
    24 
       
    25 #include <wlanosaplatform.h>
       
    26 
       
    27 /**
       
    28  *  timer client callback interface
       
    29  *
       
    30  *
       
    31  *  @lib wlanosa.lib
       
    32  *  @since S60 v3.2
       
    33  */
       
    34 class MWlanTimerClient 
       
    35     {
       
    36 
       
    37 public:
       
    38 
       
    39 	/**
       
    40 	 * Destructor.
       
    41 	 *
       
    42 	 * @since S60 v3.2
       
    43 	 */
       
    44     virtual ~MWlanTimerClient() {};
       
    45 
       
    46     /**
       
    47      * timer callback
       
    48      *
       
    49      * @since S60 v3.2
       
    50      * @param aCtx callback context
       
    51      */
       
    52     virtual void OnTimeout( TInt aCtx ) = 0;
       
    53 
       
    54     };
       
    55 
       
    56 
       
    57 #endif // WLANTIMERCLIENT_H