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 CESMRICalComponent. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CESMRICALCOMPONENT_H |
|
21 #define CESMRICALCOMPONENT_H |
|
22 |
|
23 |
|
24 // User includes. |
|
25 #include "cesmricalbase.h" // CESMRICalBase |
|
26 |
|
27 /** |
|
28 Abstract class of classes representing specific iCalendar components. |
|
29 @publishedPartner |
|
30 */ |
|
31 class CESMRICalComponent : public CESMRICalBase |
|
32 { |
|
33 public: // Construction/destruction. |
|
34 ~CESMRICalComponent(); |
|
35 |
|
36 // Factory construction methods for concrete derived classes. |
|
37 IMPORT_C static CESMRICalComponent* CreateICalComponentL(const TDesC& aName, TICalMethod aMethod); |
|
38 IMPORT_C static CESMRICalComponent* CreateICalComponentLC(const TDesC& aName, TICalMethod aMethod); |
|
39 |
|
40 IMPORT_C static CESMRICalComponent* CreateICalComponentL(CESMRICalBase::TICalComponentType aType, TICalMethod aMethod); |
|
41 IMPORT_C static CESMRICalComponent* CreateICalComponentLC(CESMRICalBase::TICalComponentType aType, TICalMethod aMethod); |
|
42 |
|
43 protected: // Construction. |
|
44 CESMRICalComponent(); |
|
45 }; |
|
46 |
|
47 #endif // CESMRICALCOMPONENT_H |
|
48 |
|
49 // End of File |