blob: 45578d7c74355ac0207588d43d6a92d04f35794b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="com.nokia.profiled">
<signal name="profile_changed">
<arg name="changed" type="b" direction="out"/>
<arg name="active" type="b" direction="out"/>
<arg name="profile" type="s" direction="out"/>
<arg name="values" type="a(sss)" direction="out"/>
<annotation name="org.qtproject.QtDBus.QtTypeName.In3" value="QList<ProfileValue>" />
</signal>
<method name="get_profile">
<arg name="profile" type="s" direction="out"/>
</method>
<method name="set_profile">
<arg name="profile" type="s" direction="in"/>
<arg name="success" type="b" direction="out"/>
</method>
</interface>
</node>
|