class time_base;
|
|
member type | description |
---|---|
dateorder | An enum type used as return type for time_get::date_order. |
enum
type above creates the following member constants:member constant | type | value | description |
---|---|---|---|
no_order | time_base::dateorder | 0 | No specific order, or format contains variable components other than day, month and year. |
dmy | time_base::dateorder | 1 | day, month, year |
mdy | time_base::dateorder | 2 | month, day, year |
ymd | time_base::dateorder | 3 | year, month, day |
ydm | time_base::dateorder | 4 | year, day, month |