|
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: Expiration timer for timed calendar events. |
|
15 * Always set to expire by the next timed calendar event (for today). |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CALENPREVIEWTIMER_H |
|
22 #define CALENPREVIEWTIMER_H |
|
23 |
|
24 #include "CalendarVariant.hrh" |
|
25 |
|
26 // INCLUDES |
|
27 #include <e32base.h> |
|
28 |
|
29 |
|
30 // CLASS DECLARATION |
|
31 NONSHARABLE_CLASS( CCalenPreviewTimer ) : public CTimer |
|
32 { |
|
33 public: |
|
34 /** |
|
35 * Two-phased constructor. |
|
36 * @param ?arg1 ?description |
|
37 **/ |
|
38 static CCalenPreviewTimer* NewL(TCallBack& aCallBack); |
|
39 |
|
40 /** |
|
41 * ?member_description. |
|
42 **/ |
|
43 void ConstructL(void); |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 **/ |
|
48 virtual ~CCalenPreviewTimer(void); |
|
49 |
|
50 private: |
|
51 /** |
|
52 * Hide default constructor. |
|
53 **/ |
|
54 CCalenPreviewTimer(TCallBack& aCallBack); |
|
55 |
|
56 protected: // From CActive |
|
57 /** |
|
58 * ?member_description. |
|
59 * @since Series 60 2.6 |
|
60 **/ |
|
61 void RunL(void); |
|
62 |
|
63 private: // Data members |
|
64 // ?one_line_short_description_of_data |
|
65 TCallBack iCallBack; |
|
66 }; |
|
67 |
|
68 #endif // CALENPREVIEWTIMER_H |
|
69 |
|
70 |
|
71 // End of File |