~ubuntu-branches/ubuntu/raring/rygel/raring

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2012-09-26 22:34:15 UTC
  • mfrom: (1.3.2)
  • mto: (14.1.10 sid)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: package-import@ubuntu.com-20120926223415-mem27auv86jjrj9k
ImportedĀ UpstreamĀ versionĀ 0.16.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* rygel-state-machine.c generated by valac 0.17.4.16-52707, the Vala compiler
 
1
/* rygel-state-machine.c generated by valac 0.16.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/librygel-core/rygel-state-machine.vala"
59
58
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->run (self, _callback_, _user_data_);
60
 
#line 61 "rygel-state-machine.c"
61
59
}
62
60
 
63
61
 
64
62
void rygel_state_machine_run_finish (RygelStateMachine* self, GAsyncResult* _res_) {
65
 
#line 27 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
66
63
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->run_finish (self, _res_);
67
 
#line 68 "rygel-state-machine.c"
68
64
}
69
65
 
70
66
 
71
67
GCancellable* rygel_state_machine_get_cancellable (RygelStateMachine* self) {
72
 
#line 32 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
73
68
        g_return_val_if_fail (self != NULL, NULL);
74
 
#line 32 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
75
69
        return RYGEL_STATE_MACHINE_GET_INTERFACE (self)->get_cancellable (self);
76
 
#line 77 "rygel-state-machine.c"
77
70
}
78
71
 
79
72
 
80
73
void rygel_state_machine_set_cancellable (RygelStateMachine* self, GCancellable* value) {
81
 
#line 32 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
82
74
        g_return_if_fail (self != NULL);
83
 
#line 32 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
84
75
        RYGEL_STATE_MACHINE_GET_INTERFACE (self)->set_cancellable (self, value);
85
 
#line 86 "rygel-state-machine.c"
86
76
}
87
77
 
88
78
 
89
79
static void rygel_state_machine_base_init (RygelStateMachineIface * iface) {
90
 
#line 27 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
91
80
        static gboolean initialized = FALSE;
92
 
#line 27 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
93
81
        if (!initialized) {
94
 
#line 27 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
95
82
                initialized = TRUE;
96
 
#line 27 "/home/jens/Source/rygel/src/librygel-core/rygel-state-machine.vala"
97
 
                g_object_interface_install_property (iface, g_param_spec_object ("cancellable", "cancellable", "cancellable", g_cancellable_get_type (), 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/librygel-core/rygel-state-machine.vala"
 
83
                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));
99
84
                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"
101
85
        }
102
86
}
103
87