2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2018-11-19 23:22:22 +00:00
|
|
|
|
|
|
|
use glib::subclass::prelude::*;
|
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use super::prelude::*;
|
2020-11-21 13:46:48 +00:00
|
|
|
use crate::Pipeline;
|
2018-11-19 23:22:22 +00:00
|
|
|
|
2020-07-25 08:02:04 +00:00
|
|
|
pub trait PipelineImpl: BinImpl {}
|
2018-11-19 23:22:22 +00:00
|
|
|
|
2021-08-24 05:55:37 +00:00
|
|
|
unsafe impl<T: PipelineImpl> IsSubclassable<T> for Pipeline {}
|