summaryrefslogtreecommitdiff
path: root/gobject/valadbussignal.vala
diff options
context:
space:
mode:
authorJuerg Billeter <j@bitron.ch>2007-08-06 14:43:16 +0000
committerJürg Billeter <juergbi@src.gnome.org>2007-08-06 14:43:16 +0000
commitf371f4431d8e3731e2b6c87f9ba7ca57088489ae (patch)
tree6e6e8f2d08ce24412fceb7d66d6792ddd94cc3dd /gobject/valadbussignal.vala
parentfa628f64088d9a05f4d758d65956c1120dc0f954 (diff)
downloadvala-f371f4431d8e3731e2b6c87f9ba7ca57088489ae.tar.gz
add experimental D-Bus client support
2007-08-06 Juerg Billeter <j@bitron.ch> * vala/Makefile.am, vala/parser.y, vala/valaarray.vala, vala/valabindingprovider.vala, vala/valaclass.vala, vala/valaenum.vala, vala/valainterface.vala, vala/valamemorymanager.vala, vala/valamethod.vala, vala/valasemanticanalyzer.vala, vala/valasymbol.vala, vala/valasymbolresolver.vala, vala/valavariabledeclarator.vala, gobject/Makefile.am, gobject/valacodegenerator.vala, gobject/valacodegeneratorassignment.vala, gobject/valacodegeneratorclass.vala, gobject/valacodegeneratorinterface.vala, gobject/valacodegeneratorinvocationexpression.vala, gobject/valacodegeneratormethod.vala, gobject/valadbusbindingprovider.vala, gobject/valadbusmethod.vala, gobject/valadbussignal.vala, compiler/valacompiler.vala, vapi/dbus-glib-1.vala, vapi/hal.vala: add experimental D-Bus client support svn path=/trunk/; revision=419
Diffstat (limited to 'gobject/valadbussignal.vala')
-rw-r--r--gobject/valadbussignal.vala31
1 files changed, 31 insertions, 0 deletions
diff --git a/gobject/valadbussignal.vala b/gobject/valadbussignal.vala
new file mode 100644
index 000000000..9ed10da93
--- /dev/null
+++ b/gobject/valadbussignal.vala
@@ -0,0 +1,31 @@
+/* valadbussignal.vala
+ *
+ * Copyright (C) 2007 Jürg Billeter
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+
+ * This library 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
+ * Lesser General Public License for more details.
+
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Author:
+ * Jürg Billeter <j@bitron.ch>
+ */
+
+using GLib;
+
+/**
+ * Represents a dynamic bound DBus signal.
+ */
+public class Vala.DBusSignal : Signal {
+ public DBusSignal (construct string name, construct TypeReference return_type, construct SourceReference source_reference = null) {
+ }
+}