radioapp/radioenginewrapper/tsrc/inc/mschedulerstartandstoptimerobserver.h
changeset 28 075425b8d9a4
child 51 bbebb0235466
equal deleted inserted replaced
24:6df133bd92e1 28:075425b8d9a4
       
     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 "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:  Callback interface for observer of CAccSrvResetInactivityTimeTimer object.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef M_SCHEDULERSTARTANDSTOPTIMEROBSERVER_H
       
    22 #define M_SCHEDULERSTARTANDSTOPTIMEROBSERVER_H
       
    23 
       
    24 
       
    25 #include <e32def.h>
       
    26 
       
    27 
       
    28 /**
       
    29  *  Callback interface for observer of CSchedulerStopAndStartTimer object. 
       
    30  *
       
    31  *  This callback interface has to be implemented by observer class.
       
    32  *  @code
       
    33  *   ?good_class_usage_example(s)
       
    34  *  @endcode
       
    35  *
       
    36  *  @lib AccServer.exe
       
    37  *  @since S60 10.1
       
    38  */
       
    39 NONSHARABLE_CLASS( MSchedulerStartAndStopTimerObserver )
       
    40     {
       
    41 
       
    42 public:
       
    43  
       
    44     /**
       
    45      * Function is called by timer watcher every time when timer elapses.
       
    46      *
       
    47      * @since S60 10.1
       
    48      * @param none. 
       
    49      * @return none
       
    50      */
       
    51     virtual void Timeout( TUint aTimerId ) = 0;
       
    52 
       
    53     virtual void CreateMUT() = 0;
       
    54     virtual void DeleteMUT() = 0;
       
    55 
       
    56     };
       
    57 
       
    58 
       
    59 #endif // M_SCHEDULERSTARTANDSTOPTIMEROBSERVER_H