container.c (14cccb618508a0aa70eb9ccf366703a019a45ff0) | container.c (1de7afc984b49af164e2619e6850b9732b173b34) |
---|---|
1/* 2 * Device Container 3 * 4 * Copyright IBM, Corp. 2012 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 13#include "qom/object.h" | 1/* 2 * Device Container 3 * 4 * Copyright IBM, Corp. 2012 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 */ 12 13#include "qom/object.h" |
14#include "module.h" | 14#include "qemu/module.h" |
15#include <assert.h> 16 17static TypeInfo container_info = { 18 .name = "container", 19 .instance_size = sizeof(Object), 20 .parent = TYPE_OBJECT, 21}; 22 --- 30 unchanged lines hidden --- | 15#include <assert.h> 16 17static TypeInfo container_info = { 18 .name = "container", 19 .instance_size = sizeof(Object), 20 .parent = TYPE_OBJECT, 21}; 22 --- 30 unchanged lines hidden --- |