Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / ChildAddedEventHandler.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst {
5
6         using System;
7
8         public delegate void ChildAddedEventHandler(object o, ChildAddedEventArgs args);
9
10         public class ChildAddedEventArgs : GLib.SignalArgs {
11                 public GLib.Object Object{
12                         get {
13                                 return (GLib.Object) Args [0];
14                         }
15                 }
16
17                 public string Name{
18                         get {
19                                 return (string) Args [1];
20                         }
21                 }
22
23         }
24 }