|
From: Andreas V. <li...@br...> - 2008-09-09 21:15:20
|
Hello, now I found out about annotations in dbus-glib XML: http://dbus.freedesktop.org/doc/dbus-tutorial.html#glib-annotations So I've some questions: - Do you think we should use the same concept for dbus-c++? - Any ideas why the name is e.g. org.freedesktop.DBus.GLib.Async? I think if the name would be org.freedesktop.DBus.Async it wouldn't be GLib specific. - Refering to my proposal: <signal name="onButtonListener"> <arg type="(inyb)" name="eventButton" direction="out" object="KeyEvent"/> </signal> This may better be written: <signal name="onButtonListener"> <arg type="(inyb)" name="eventButton" direction="out"> <annotation name="org.freedesktop.DBus.Object" value="KeyEvent"/> </arg> </signal> What do you think? regards Andreas |