| 172 | osmoh::Weekday::Friday, osmoh::Weekday::Saturday, osmoh::Weekday::Sunday}; |
| 173 | |
| 174 | editor::ui::OpeningDays GetCommonDays(editor::ui::OpeningDays const & a, editor::ui::OpeningDays const & b) |
| 175 | { |
| 176 | editor::ui::OpeningDays result; |
| 177 | std::set_intersection(begin(a), end(a), begin(b), end(b), inserter(result, begin(result))); |
| 178 | return result; |
| 179 | } |
| 180 | |
| 181 | osmoh::HourMinutes::TMinutes::rep GetDuration(osmoh::Time const & time) |
| 182 | { |
no test coverage detected