Default the copy and move operators because the virtual dtor is explicit
| 31 | virtual ~ScheduleVariableInterval() override = default; |
| 32 | // Default the copy and move operators because the virtual dtor is explicit |
| 33 | ScheduleVariableInterval(const ScheduleVariableInterval& other) = default; |
| 34 | ScheduleVariableInterval(ScheduleVariableInterval&& other) = default; |
| 35 | ScheduleVariableInterval& operator=(const ScheduleVariableInterval&) = default; |
| 36 | ScheduleVariableInterval& operator=(ScheduleVariableInterval&&) = default; |