| 184 | } |
| 185 | |
| 186 | bool Includes(osmoh::Timespan const & a, osmoh::Timespan const & b) |
| 187 | { |
| 188 | return GetDuration(a.GetStart()) <= GetDuration(b.GetStart()) && GetDuration(b.GetEnd()) <= GetDuration(a.GetEnd()); |
| 189 | } |
| 190 | |
| 191 | bool ExcludeRulePart(osmoh::RuleSequence const & rulePart, editor::ui::TimeTableSet & tts) |
| 192 | { |
no test coverage detected