Add parameter-less constructors for Bin/Pipeline

This commit is contained in:
Sebastian Dröge 2009-06-20 11:35:35 +02:00
parent c123dd008a
commit 82f9687b7c
3 changed files with 4 additions and 0 deletions

View file

@ -1,3 +1,5 @@
public Bin () : this (null) {}
[DllImport("libgstreamer-0.10.dll") ]
static extern bool gst_bin_add (IntPtr raw, IntPtr element);

View file

@ -82,6 +82,7 @@ customs = \
AppSink.custom \
AppSrc.custom \
Bin.custom \
Pipeline.custom \
Buffer.custom \
Bus.custom \
Caps.custom \

View file

@ -0,0 +1 @@
public Pipeline () : this (null) {}