summaryrefslogtreecommitdiffstats
path: root/mono/SignalAttribute.cs
diff options
context:
space:
mode:
authorOwen Fraser-Green <owen@discobabe.net>2004-03-26 15:25:59 +0000
committerOwen Fraser-Green <owen@discobabe.net>2004-03-26 15:25:59 +0000
commit45277e93d8c8e18a04d1c28eb666337316726152 (patch)
tree46502f3644fad7cad6932e3d3267edf3a4a42eec /mono/SignalAttribute.cs
parent7dd57040236dc34a313948f75b403a49df693649 (diff)
Added signal support.
Diffstat (limited to 'mono/SignalAttribute.cs')
-rw-r--r--mono/SignalAttribute.cs11
1 files changed, 11 insertions, 0 deletions
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()
+ {
+ }
+ }
+}