本文整理汇总了C++中date_type类的典型用法代码示例。如果您正苦于以下问题:C++ date_type类的具体用法?C++ date_type怎么用?C++ date_type使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了date_type类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: get_neg_offset
duration_type get_neg_offset(const date_type& d) const
{
// fix compiler warnings
d.year();
return duration_type(-f_);
}
示例2: is_dst_boundary_day
static bool is_dst_boundary_day(date_type d)
{
year_type y = d.year();
return ((d == local_dst_start_day(y)) ||
(d == local_dst_end_day(y)));
}
示例3: is_neg_infinity
bool is_neg_infinity()const
{
return(day.is_neg_infinity() || time_of_day.is_neg_infinity());
}
示例4: is_not_a_date_time
bool is_not_a_date_time()const
{
return(day.is_not_a_date() || time_of_day.is_not_a_date_time());
}