From 45277e93d8c8e18a04d1c28eb666337316726152 Mon Sep 17 00:00:00 2001 From: Owen Fraser-Green Date: Fri, 26 Mar 2004 15:25:59 +0000 Subject: Added signal support. --- mono/SignalAttribute.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mono/SignalAttribute.cs (limited to 'mono/SignalAttribute.cs') diff --git a/mono/SignalAttribute.cs b/mono/SignalAttribute.cs new file mode 100644 index 00000000..4835444b --- /dev/null +++ b/mono/SignalAttribute.cs @@ -0,0 +1,11 @@ +using System; + +namespace DBus +{ + [AttributeUsage(AttributeTargets.Event, AllowMultiple=false, Inherited=true)] public class SignalAttribute : Attribute + { + public SignalAttribute() + { + } + } +} -- cgit