summaryrefslogtreecommitdiffstats
path: root/glib/examples/statemachine/statemachine.xml
blob: c375ef1bc0720913302949462697639ef1c8e4ff (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
30
31
32
33
<?xml version="1.0" encoding="UTF-8" ?>

<node name="/">
  <interface name="com.example.StateMachine">

    <method name="GetInfo">
      <arg type="s" name="name" direction="out"/>
      <arg type="s" name="state" direction="out"/>
    </method>

    <method name="Start">
    </method>

    <method name="Shutdown">
    </method>

    <method name="Reinitialize">
    </method>

    <method name="Reacquire">
    </method>

    <method name="GetAcquiringProgress">
      <arg type="d" direction="out"/>
    </method>

    <!-- Mark the signals as exported -->
    <signal name="StateChanged"/>
    <signal name="AcquisitionFailed"/>
    <signal name="AcquisitionProgress"/>

  </interface>
</node>