本文整理汇总了C++中local_date_time::is_special方法的典型用法代码示例。如果您正苦于以下问题:C++ local_date_time::is_special方法的具体用法?C++ local_date_time::is_special怎么用?C++ local_date_time::is_special使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类local_date_time
的用法示例。
在下文中一共展示了local_date_time::is_special方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: logic_error
scale_with_holidays(const local_date_time& tm, const local_date_time& start, long frequency=1, holidays_const_ptr hol=nullptr) : _frequency(frequency), _holidays(hol) {
if(tm.is_special())
throw std::logic_error("the time to point to cannot be a special value");
if(_frequency <= 0)
throw std::logic_error("frequency must be positive");
if(start.is_special())
_base.reset(detail::helper<BaseScale>::create(tm, tm));
else
_base.reset(detail::helper<BaseScale>::create(tm, start));
back_to_non_holiday();
update_position();
}
示例2: scale_with_holidays
explicit scale_with_holidays(const local_date_time& start, long frequency=1, holidays_const_ptr hol=nullptr) : _frequency(frequency), _holidays(hol), _position(0) {
if(start.is_special())
throw std::logic_error("the start time cannot be a special value");
if(_frequency <= 0)
throw std::logic_error("frequency must be positive");
_base.reset(detail::helper<BaseScale>::create(start));
back_to_non_holiday();
}