2018-11-19 23:22:22 +00:00
|
|
|
// Copyright (C) 2017,2018 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use super::prelude::*;
|
|
|
|
use glib::subclass::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
|
|
|
|
2020-11-05 13:18:19 +00:00
|
|
|
unsafe impl<T: PipelineImpl> IsSubclassable<T> for Pipeline
|
2018-11-19 23:22:22 +00:00
|
|
|
where
|
|
|
|
<T as ObjectSubclass>::Instance: PanicPoison,
|
|
|
|
{
|
2020-11-05 16:48:17 +00:00
|
|
|
fn override_vfuncs(klass: &mut glib::Class<Self>) {
|
2020-11-21 13:46:48 +00:00
|
|
|
<crate::Bin as IsSubclassable<T>>::override_vfuncs(klass);
|
2020-11-05 17:07:31 +00:00
|
|
|
let _klass = klass.as_mut();
|
|
|
|
// Nothing to do here
|
2018-11-19 23:22:22 +00:00
|
|
|
}
|
|
|
|
}
|