1
0
Fork 0
qemu/qom/container.c
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

37 lines
788 B
C

/*
* Device Container
*
* Copyright IBM, Corp. 2012
*
* Authors:
* Anthony Liguori <aliguori@us.ibm.com>
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qom/object.h"
#include "qemu/module.h"
static const TypeInfo container_info = {
.name = TYPE_CONTAINER,
.parent = TYPE_OBJECT,
};
static void container_register_types(void)
{
type_register_static(&container_info);
}
Object *object_property_add_new_container(Object *obj, const char *name)
{
Object *child = object_new(TYPE_CONTAINER);
object_property_add_child(obj, name, child);
object_unref(child);
return child;
}
type_init(container_register_types)