Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



Location: calconv.h
Link against: ccon.lib

Class TChineseDate

TChineseDate

Support

Supported from 6.1

Description

Chinese date.

Used by the Chinese calendar (TChineseCalendar). Its public member data is the year cycle, the year (1-60), the month (1-12), whether or not the month is a leap month, and the day in the month (1-29 or 30).

Defined in TChineseDate:
TChineseDate(), iCycle, iDay, iLeapMonth, iMonth, iYear, operator==()

See also:


Member functions


TChineseDate()

TChineseDate();

Description

Empty default constructor.


operator==()

TBool operator==(const TChineseDate& aDate) const;

Description

Equality operator.

Parameters

const TChineseDate& aDate

The date to compare with this date.

Return value

TBool

ETrue if the two dates are the same, EFalse if not.

[Top]


Member data


iCycle

TInt iCycle;

Description

The year cycle.


iYear

TInt iYear;

Description

The year (1-60).


iMonth

TInt iMonth;

Description

The month (1-12).


iLeapMonth

TBool iLeapMonth;

Description

Whether or not the month is a leap month.


iDay

TInt iDay;

Description

The day in the month (1-29 or 30).