msgconnmanager/inc/msgconntimercallback.h
branchRCL_3
changeset 17 2669f8761a99
parent 16 2580314736af
child 18 fbd2e7cec7ef
equal deleted inserted replaced
16:2580314736af 17:2669f8761a99
     1 /*
       
     2 * Copyright (c) 2005 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:   Connection manager timer callback
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __MSGCONNTIMERCALLBACK__
       
    22 #define __MSGCONNTIMERCALLBACK__
       
    23 
       
    24 #include <e32base.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 class MMsgConnTimerCallback
       
    29     {
       
    30     public:
       
    31 
       
    32         /**
       
    33         * Pure virtual callback function to be implemented in the
       
    34         * derived class. This function is called when timer has
       
    35         * compeleted.
       
    36         * @param aStatus The integer value of iStatus of the timer class
       
    37         * @return void
       
    38         */
       
    39         virtual void HandleTimerEvent( TInt aStatus ) = 0;
       
    40     };
       
    41 
       
    42 #endif      //__MSGCONNTIMERCALLBACK__
       
    43             
       
    44 // End of File