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