Lines Matching defs:DateTime
45 struct DateTime struct
48 DateTime(const sal_uInt16& hundredthSeconds, in DateTime() function
63 void SetYear(sal_uInt16 year) { Year = year; } in SetYear()
64 void SetMonth(sal_uInt16 month) { Month = month; } in SetMonth()
65 void SetDay(sal_uInt16 day) { Day = day; } in SetDay()
67 void SetTime(sal_uInt16) { Hours = Minutes = Seconds = HundredthSeconds = 0; } in SetTime()
68 void SetHour(sal_uInt16 hours) { Hours = hours; } in SetHour()
69 void SetMin(sal_uInt16 minutes) { Minutes = minutes; } in SetMin()
70 void SetSec(sal_uInt16 seconds) { Seconds = seconds; } in SetSec()
71 void Set100Sec(sal_uInt16 hundredthSec) { HundredthSeconds = hundredthSec; } in Set100Sec()
73 sal_uInt16 GetMonth(void) { return Month; } in GetMonth()