Namespaces
Variants
Views
Actions

std::time_base

From cppreference.com
< cpp‎ | locale
 
 
Localizations library
Locales and facets
Locales
Facet category base classes
time_base

ctype facets
numeric facets
collate facets
time facets
monetary facets
messages facets
Character classification and conversion
Character classification
Conversions
(C++11/17*)
(C++11/17*)
Code conversion facets
(C++11/17/26*)
(C++11/17/26*)    
(C++11/17/26*)
(C++11/17/26*)
C locale
Text encoding identifications
 
Defined in header <locale>
class time_base;

The class std::time_base provides the date order constants which are inherited by the std::time_get facets.

[edit] Member types

Member type Definition
enum dateorder { no_order, dmy, mdy, ymd, ydm }; Unscoped enumeration type
Enumeration constant Definition
no_order Unspecified order
dmy Day, month, year (european) order
mdy Month, day, year (american) order
ymd Year, month, day (asian) order
ydm Year, day, month

[edit] See also

obtains preferred ordering of day, month, and year
(virtual protected member function of std::time_get<CharT,InputIt>) [edit]
[virtual]
extracts month, day, and year from input stream
(virtual protected member function of std::time_get<CharT,InputIt>) [edit]