Files
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

38 lines
788 B
C

/*
* Device Container
*
* Copyright IBM, Corp. 2012
*
* Authors:
* Anthony Liguori <[email protected]>
*
* 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)