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 definiton of CESMRICal. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef CESMRICAL_H |
|
21 #define CESMRICAL_H |
|
22 |
|
23 |
|
24 // User includes. |
|
25 #include "cesmricalbase.h" // CESMRICalBase |
|
26 |
|
27 // Forward declaration. |
|
28 class RWriteStream; |
|
29 |
|
30 /** |
|
31 Class representing a VCALENDAR component. |
|
32 @publishedPartner |
|
33 */ |
|
34 class CESMRICal : public CESMRICalBase |
|
35 { |
|
36 public: // Construction/destruction. |
|
37 IMPORT_C static CESMRICal* NewL(); |
|
38 IMPORT_C static CESMRICal* NewLC(); |
|
39 ~CESMRICal(); |
|
40 |
|
41 public: // Methods. |
|
42 IMPORT_C void ExternalizeL(RWriteStream& aWriteStream); |
|
43 IMPORT_C void SetMethodL(TICalMethod aMethod); |
|
44 |
|
45 private: // Construction. |
|
46 CESMRICal(); |
|
47 void ConstructL(); |
|
48 |
|
49 private: // From CESMRICalBase. |
|
50 TBool ValidatePropertyImpl(const TDesC& aName) const; |
|
51 TBool ValidateComponent(TICalComponentType aType) const; |
|
52 }; |
|
53 |
|
54 #endif // CESMRICAL_H |
|
55 |
|
56 // End of File |