Symbian
Symbian OS Library

SYMBIAN OS V9.3

[Index] [Spacer] [Previous] [Next]



Location: CalendarConverter.h
Link against: ccon.lib

Class TChineseDate

class TChineseDate;

Description

Chinese date.

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).

Members

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


Construction and destruction


TChineseDate()

IMPORT_C TChineseDate();

Description

Default C++ constructor.

[Top]


Member functions


operator==()

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

Description

Tests whether two objects of this class are equivalent.

Parameters

const TChineseDate &aDate

An object of this class.

Return value

TBool

ETrue: the objects are equivalent.

[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).