dvrengine/CommonRecordingEngine/inc/MCRTimerObserver.h
changeset 18 2c61986c60fa
parent 16 ae43a6765dd5
child 20 fbe6578feb8b
equal deleted inserted replaced
16:ae43a6765dd5 18:2c61986c60fa
     1 /*
       
     2 * Copyright (c) 2007 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:    Observer for CCRTimer*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CCRTIMEROBSERVER_H
       
    21 #define CCRTIMEROBSERVER_H
       
    22 
       
    23 // INCLUDES
       
    24 // None
       
    25 
       
    26 // CONSTANTS
       
    27 // None
       
    28 
       
    29 // MACROS
       
    30 // None
       
    31 
       
    32 // DATA TYPES
       
    33 // None
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 class CCRTimer;
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 *  This class specifies the function to be called when a timeout occurs.
       
    42 *  Used in conjunction with CCRTimer class.
       
    43 *
       
    44 *  @lib CommonRecordingEngine.lib
       
    45 *  @since Series 60 3.0
       
    46 */
       
    47 class MCRTimerObserver
       
    48     {
       
    49 
       
    50 public:
       
    51 
       
    52     /**
       
    53     * The function to be called when a timeout occurs.
       
    54     * @since Series 60 3.0
       
    55     * @param aTimer a pointer to timer.
       
    56     * @return none.
       
    57     */
       
    58     virtual void TimerExpired( CCRTimer* aTimer ) = 0;
       
    59     
       
    60     };
       
    61 
       
    62 #endif // CCRTIMEROBSERVER_H
       
    63 
       
    64 //  End of File
       
    65 
       
    66