daemon: move ladish_room::graph member to the common section

It is used for room template objects as well
This commit is contained in:
Nedko Arnaudov 2011-05-16 03:40:35 +03:00
parent 64923f3a86
commit dc11cfe515
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
/* /*
* LADI Session Handler (ladish) * LADI Session Handler (ladish)
* *
* Copyright (C) 2010 Nedko Arnaudov <nedko@arnaudov.name> * Copyright (C) 2010, 2011 Nedko Arnaudov <nedko@arnaudov.name>
* *
************************************************************************** **************************************************************************
* This file contains internal declarations used by the room object implementation * This file contains internal declarations used by the room object implementation
@ -42,6 +42,7 @@ struct ladish_room
uuid_t uuid; uuid_t uuid;
char * name; char * name;
bool template; bool template;
ladish_graph_handle graph;
/* these are not valid for templates */ /* these are not valid for templates */
uuid_t template_uuid; uuid_t template_uuid;
@ -50,7 +51,6 @@ struct ladish_room
char * object_path; char * object_path;
dbus_object_path dbus_object; dbus_object_path dbus_object;
uint64_t version; uint64_t version;
ladish_graph_handle graph;
ladish_app_supervisor_handle app_supervisor; ladish_app_supervisor_handle app_supervisor;
ladish_client_handle client; ladish_client_handle client;
bool started; bool started;