| 48 | } |
| 49 | |
| 50 | void MdfEvent::Type::set(EventType type) { |
| 51 | if (event_ != nullptr) { |
| 52 | event_->Type(static_cast<mdf::EventType>(type)); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | SyncType MdfEvent::Sync::get() { |
| 57 | return event_ != nullptr ? |
nothing calls this directly
no test coverage detected