| 84 | } |
| 85 | |
| 86 | void timer::set_frequency(std::chrono::milliseconds new_frequency) { |
| 87 | throw_if_empty(details::consts::k_timer_empty_set_frequency_err_msg); |
| 88 | return m_state->set_new_frequency(new_frequency.count()); |
| 89 | } |
| 90 | |
| 91 | timer& timer::operator=(timer&& rhs) noexcept { |
| 92 | if (this == &rhs) { |