gstreamer_editing_services/subclass/
mod.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![allow(clippy::cast_ptr_alignment)]
4
5mod formatter;
6
7pub mod prelude {
8    #[doc(hidden)]
9    pub use glib::subclass::prelude::*;
10    pub use gst::subclass::prelude::*;
11
12    pub use super::formatter::{FormatterImpl, FormatterImplExt};
13}