equal
deleted
inserted
replaced
|
1 #ifndef ICALEVENT_H |
|
2 #define ICALEVENT_H/* |
|
3 * Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). |
|
4 * All rights reserved. |
|
5 * This component and the accompanying materials are made available |
|
6 * under the terms of "Eclipse Public License v1.0" |
|
7 * which accompanies this distribution, and is available |
|
8 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
9 * |
|
10 * Initial Contributors: |
|
11 * Nokia Corporation - initial contribution. |
|
12 * |
|
13 * Contributors: |
|
14 * |
|
15 * Description: Holds the definition of CICalEvent. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 // User includes. |
|
22 #include "ICalComponent.h" // CICalComponent |
|
23 |
|
24 /** |
|
25 Class representing a VEVENT component. |
|
26 @internalTechnology |
|
27 */ |
|
28 class CICalEvent : public CICalComponent |
|
29 { |
|
30 public: // Construction/destruction. |
|
31 static CICalEvent* NewLC(TICalMethod aMethod); |
|
32 ~CICalEvent(); |
|
33 |
|
34 private: // Construction. |
|
35 CICalEvent(); |
|
36 void ConstructL(TICalMethod aMethod); |
|
37 |
|
38 private: // From CICalBase. |
|
39 TBool ValidatePropertyImpl(const TDesC& aName) const; |
|
40 TBool ValidateComponent(TICalComponentType aType) const; |
|
41 }; |
|
42 |
|
43 #endif // ICALEVENT_H |
|
44 |
|
45 // End of File |