class
std::time_base
<locale>
Base class for time_get
This is not a
facet type, but the base class that defines the
dateorder member type to be inherited by
facet class time_get:
1 2 3 4 5 6
|
class time_base {
public:
enum dateorder {
no_order, dmy, mdy, ymd, ydm
};
};
|
See
time_get::date_order for more information.