calendarengines/versit2/inc/ICalTodo.h
changeset 0 f979ecb2b13e
equal deleted inserted replaced
-1:000000000000 0:f979ecb2b13e
       
     1 #ifndef ICALTODO_H
       
     2 #define ICALTODO_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 CICalTodo.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 // User includes.
       
    22 #include "ICalComponent.h"	// CICalComponent
       
    23 
       
    24 /**
       
    25 Class representing a VTODO component.
       
    26 @internalTechnology
       
    27 */
       
    28 class CICalTodo : public CICalComponent
       
    29 	{
       
    30 public:	// Construction.
       
    31 	static CICalTodo* NewLC(TICalMethod aMethod);
       
    32 	~CICalTodo();
       
    33 
       
    34 private:	// Construction.
       
    35 	CICalTodo();
       
    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	// ICALTODO_H
       
    44 
       
    45 // End of File