blob: f1e36f9db043ed44db91eaac265697b97a164a2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0" encoding="UTF-8" ?>
<node name="/">
<interface name="org.freedesktop.Geoclue.Velocity">
<method name="GetVelocity">
<arg type="i" name="fields" direction="out" />
<arg type="i" name="timestamp" direction="out" />
<arg type="d" name="speed" direction="out" />
<arg type="d" name="direction" direction="out" />
<arg type="d" name="climb" direction="out" />
</method>
<method name="GetLastVelocity">
<arg type="i" name="fields" direction="out" />
<arg type="i" name="timestamp" direction="out" />
<arg type="d" name="speed" direction="out" />
<arg type="d" name="direction" direction="out" />
<arg type="d" name="climb" direction="out" />
</method>
<signal name="VelocityChanged">
<arg type="i" name="fields" />
<arg type="i" name="timestamp" />
<arg type="d" name="speed" />
<arg type="d" name="direction" />
<arg type="d" name="climb" />
</signal>
</interface>
</node>
|