Bin, Pipeline: Added empty constructor
authorStephan Sundermann <stephansundermann@gmail.com>
Sat, 2 Nov 2013 12:33:47 +0000 (13:33 +0100)
committerStephan Sundermann <stephansundermann@gmail.com>
Sat, 21 Dec 2013 15:52:28 +0000 (16:52 +0100)
Fixes crashes when accessing the Bin.base or Pipeline.base

sources/custom/Bin.cs [new file with mode: 0644]
sources/custom/Pipeline.cs [new file with mode: 0644]

diff --git a/sources/custom/Bin.cs b/sources/custom/Bin.cs
new file mode 100644 (file)
index 0000000..2377f0a
--- /dev/null
@@ -0,0 +1,24 @@
+// Copyright (C) 2013  Stephan Sundermann <stephansundermann@gmail.com>
+// 
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+namespace Gst {
+       using System;
+       using System.Collections;
+       using System.Runtime.InteropServices;
+
+       partial class Bin {
+               public Bin () : this (null) {}
+       }
+}
\ No newline at end of file
diff --git a/sources/custom/Pipeline.cs b/sources/custom/Pipeline.cs
new file mode 100644 (file)
index 0000000..740727b
--- /dev/null
@@ -0,0 +1,24 @@
+// Copyright (C) 2013  Stephan Sundermann <stephansundermann@gmail.com>
+// 
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU Affero General Public License as
+// published by the Free Software Foundation, either version 3 of the
+// License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU Affero General Public License for more details.
+//
+// You should have received a copy of the GNU Affero General Public License
+// along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+namespace Gst {
+       using System;
+       using System.Collections;
+       using System.Runtime.InteropServices;
+
+       partial class Pipeline {
+               public Pipeline () : this (null) {}
+       }
+}
\ No newline at end of file