// // SignalAttribute.cs // // Author: // Ricardo Fernández Pascual // // (C) Ricardo Fernández Pascual // namespace GLib { using System; /// /// Marks events genrated from glib signals /// /// /// /// This attribute indentifies events generated from glib signals /// and allows obtaining its original name. /// [Serializable] public class SignalAttribute : Attribute { private string cname; public SignalAttribute (string cname) { this.cname = cname; } private SignalAttribute () {} public string CName { get { return cname; } } } }