equal
deleted
inserted
replaced
|
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: Holds the definition of CESMRICalTodo. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CESMRICALTODO_H |
|
21 #define CESMRICALTODO_H |
|
22 |
|
23 // User includes. |
|
24 #include "cesmricalcomponent.h" // CESMRICalComponent |
|
25 |
|
26 /** |
|
27 Class representing a VTODO component. |
|
28 @internalTechnology |
|
29 */ |
|
30 class CESMRICalTodo : public CESMRICalComponent |
|
31 { |
|
32 public: // Construction. |
|
33 static CESMRICalTodo* NewLC(TICalMethod aMethod); |
|
34 ~CESMRICalTodo(); |
|
35 |
|
36 private: // Construction. |
|
37 CESMRICalTodo(); |
|
38 void ConstructL(TICalMethod aMethod); |
|
39 |
|
40 private: // From CESMRICalBase. |
|
41 TBool ValidatePropertyImpl(const TDesC& aName) const; |
|
42 TBool ValidateComponent(TICalComponentType aType) const; |
|
43 }; |
|
44 |
|
45 #endif // CESMRICALTODO_H |
|
46 |
|
47 // End of File |