| 661 | } |
| 662 | |
| 663 | void ScheduleRule::setApplySundayNoFail(bool applySunday) { |
| 664 | bool result = getImpl<detail::ScheduleRule_Impl>()->setApplySunday(applySunday); |
| 665 | OS_ASSERT(result); |
| 666 | } |
| 667 | |
| 668 | bool ScheduleRule::setApplyMonday(bool applyMonday) { |
| 669 | return getImpl<detail::ScheduleRule_Impl>()->setApplyMonday(applyMonday); |
nothing calls this directly
no test coverage detected