~ubuntu-branches/ubuntu/trusty/rygel/trusty

« back to all changes in this revision

Viewing changes to src/rygel/rygel-state-machine.c

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2011-12-16 15:21:25 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20111216152125-qgn31dkfmhouhrf0
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* rygel-state-machine.c generated by valac 0.12.0, the Vala compiler
 
1
/* rygel-state-machine.c generated by valac 0.14.1, the Vala compiler
2
2
 * generated from rygel-state-machine.vala, do not modify */
3
3
 
4
4
/*
55
55
 
56
56
 
57
57
void rygel_state_machine_run (RygelStateMachine* self, GAsyncReadyCallback _callback_, gpointer _user_data_) {
 
58
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
58
59
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->run (self, _callback_, _user_data_);
 
60
#line 61 "rygel-state-machine.c"
59
61
}
60
62
 
61
63
 
62
64
void rygel_state_machine_run_finish (RygelStateMachine* self, GAsyncResult* _res_) {
 
65
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
63
66
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->run_finish (self, _res_);
 
67
#line 68 "rygel-state-machine.c"
64
68
}
65
69
 
66
70
 
67
71
GCancellable* rygel_state_machine_get_cancellable (RygelStateMachine* self) {
 
72
#line 32 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
 
73
        g_return_val_if_fail (self != NULL, NULL);
 
74
#line 32 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
68
75
        return RYGEL_STATE_MACHINE_GET_INTERFACE (self)->get_cancellable (self);
 
76
#line 77 "rygel-state-machine.c"
69
77
}
70
78
 
71
79
 
72
80
void rygel_state_machine_set_cancellable (RygelStateMachine* self, GCancellable* value) {
 
81
#line 32 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
 
82
        g_return_if_fail (self != NULL);
 
83
#line 32 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
73
84
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->set_cancellable (self, value);
 
85
#line 86 "rygel-state-machine.c"
74
86
}
75
87
 
76
88
 
77
89
static void rygel_state_machine_base_init (RygelStateMachineIface * iface) {
 
90
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
78
91
        static gboolean initialized = FALSE;
 
92
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
79
93
        if (!initialized) {
 
94
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
80
95
                initialized = TRUE;
 
96
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
81
97
                g_object_interface_install_property (iface, g_param_spec_object ("cancellable", "cancellable", "cancellable", G_TYPE_CANCELLABLE, G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB | G_PARAM_READABLE | G_PARAM_WRITABLE));
 
98
#line 27 "/home/jens/Source/rygel/src/rygel/rygel-state-machine.vala"
82
99
                g_signal_new ("completed", RYGEL_TYPE_STATE_MACHINE, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
 
100
#line 101 "rygel-state-machine.c"
83
101
        }
84
102
}
85
103