gstreamer-rs/gstreamer/src/subclass/system_clock.rs
2021-03-09 16:04:32 +02:00

21 lines
615 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use super::prelude::*;
use glib::subclass::prelude::*;
use crate::SystemClock;
pub trait SystemClockImpl: ClockImpl {}
unsafe impl<T: SystemClockImpl> IsSubclassable<T> for SystemClock {
fn class_init(klass: &mut glib::Class<Self>) {
<crate::Clock as IsSubclassable<T>>::class_init(klass);
let _klass = klass.as_mut();
// Nothing to do here
}
fn instance_init(instance: &mut glib::subclass::InitializingObject<T>) {
<crate::Clock as IsSubclassable<T>>::instance_init(instance);
}
}