Tools.h++ Class Reference

Table Of Contents
(See RWDaylightBoundary below.)
RWDaylightBoundary
end_;
This structure indicates the time of year, to the minute, when standard time resumes during
this period. (See RWDaylightBoundary below.)
struct RWDaylight-Boundary
struct RWExport RWDaylightBoundary {
// this struct uses <time.h> struct tm conventions:
int month_; // [0..11]
int week_; // [0..4], or -1
int weekday_; // [0..6], 0=Sunday; or, [1..31] if week_== -1
int minute_; // [0..1439] (Usually 2 AM, = 120)
};
int
month_;
The month from (0 - 11), where 0 = January.
int
week_;
A week of the month from (0 - 4), or -1 if the following field is to represent a day within the
month.
int
weekday_;
A day of the week from (0 - 6), where 0 = Sunday, or, if the week_ field is -1, a day of the
month from (1 - 31).
int
minute_;
Minutes after 12:00 AM, from (0 - 1439). For example, 120 = 2 AM.