pipeline: Add to lib.rs

This commit is contained in:
Vivia Nikolaidou 2019-05-12 16:38:16 +03:00
parent 698120c620
commit 496fc61873
2 changed files with 2 additions and 7 deletions

View file

@ -153,6 +153,8 @@ mod element;
mod bin;
mod pipeline;
// OS dependent Bus extensions (also import the other plateform mod for doc)
#[cfg(any(feature = "v1_14", feature = "dox"))]
cfg_if! {

View file

@ -6,14 +6,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use glib;
use glib::object::{Cast, ObjectExt};
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::IsA;
use gobject_sys;
use PipelineFlags;
pub trait GstPipelineExtManual: 'static {
@ -49,5 +44,3 @@ impl<O: IsA<::Pipeline>> GstPipelineExtManual for O {
}
}
}