calendarui/inc/CalenTimer.h
changeset 89 b57382753122
parent 0 f979ecb2b13e
equal deleted inserted replaced
83:5aadd1120515 89:b57382753122
       
     1 /*
       
     2 * Copyright (c) 2002, 2003 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:  Calendar timer class.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __CALENTIMER_H__
       
    21 #define __CALENTIMER_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include <E32Base.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 NONSHARABLE_CLASS( CCalenTimer ) : public CTimer
       
    29 {
       
    30  public:
       
    31     /**
       
    32      * Two-phased constructor.
       
    33      * @since S60 3.0
       
    34      * @param ?arg1 ?description
       
    35      **/
       
    36     static CCalenTimer* NewL(TCallBack& aCallBack);
       
    37 
       
    38     /**
       
    39      * ?member_description.
       
    40      * @since S60 3.0
       
    41      **/
       
    42     void ConstructL(void);
       
    43 
       
    44     /**
       
    45      * Destructor.
       
    46      * @since S60 3.0
       
    47      **/
       
    48     virtual ~CCalenTimer(void);
       
    49 
       
    50  private:
       
    51     /**
       
    52      * Hide default constructor.
       
    53      * @since S60 3.0
       
    54      **/
       
    55     inline CCalenTimer(TCallBack& aCallBack);
       
    56 
       
    57  protected:  // From CActive
       
    58     /**
       
    59      * ?member_description.
       
    60      * @since S60 3.0
       
    61      **/
       
    62     inline void RunL(void);
       
    63 
       
    64  private:  // Data members
       
    65     // ?one_line_short_description_of_data
       
    66     TCallBack iCallBack;
       
    67 
       
    68 };
       
    69 
       
    70 #include "CalenTimer.inl"
       
    71 
       
    72 #endif  // __CALENTIMER_H__
       
    73 
       
    74 
       
    75 // End of File