CFGregorianDate |
Header: CFDate.h |
Structure used to represent a point in time using the Gregorian calendar.
struct CFGregorianDate { SInt32 year; SInt8 month; SInt8 day; SInt8 hour; SInt8 minute; double second; };
CFGregorianDate is implemented using the smallest data type appropriate for the range of possible values. For example, there are only 12 months in the Gregorian year, so there is no need to use an integer type larger than 8 bits. To represent a time interval in Gregorian units, use a CFGregorianUnits.
© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)