diff -r 42814f902fe6 -r 38571fd2a704 pimappsupport/chinesecalendaralg/originalsrc/ArithmeticalDate.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pimappsupport/chinesecalendaralg/originalsrc/ArithmeticalDate.cpp Fri Mar 12 15:42:35 2010 +0200 @@ -0,0 +1,64 @@ +// Copyright (c) 2000-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// Implementation of the TArithmeticalDate class. +// +// + +// User includes +#include "calconv.h" + +// +// Construction/Destruction +// + +//------------------------------------------------------ +// Class: TArithmeticalDate +// Function: TArithmeticalDate +// Arguments: None +// +// Comments: Constructor +// +// Return: None +//------------------------------------------------------ +EXPORT_C TArithmeticalDate::TArithmeticalDate() + { + } + +//------------------------------------------------------ +// Class: TArithmeticalDate +// Function: operator == +// Arguments: const TArithmeticalDate & +// +// Comments: overloaded == operator +// +// Return: TBool - ETrue if both the TArithmeticalDate +// classes are the same +//------------------------------------------------------ +EXPORT_C TBool TArithmeticalDate::operator ==(const TArithmeticalDate &aDate) const + { + TBool rtn = ETrue; + if(iYear != aDate.iYear) + { + rtn = EFalse; + } + if(iMonth != aDate.iMonth) + { + rtn = EFalse; + } + if(iDay != aDate.iDay) + { + rtn = EFalse; + } + return rtn; + }