2 * QEMU Object Model - QObject wrappers
4 * Copyright (C) 2012 Red Hat, Inc.
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
13 #ifndef QEMU_QOM_QOBJECT_H
14 #define QEMU_QOM_QOBJECT_H
16 #include "qom/object.h"
19 * object_property_get_qobject:
21 * @name: the name of the property
22 * @errp: returns an error if this function fails
24 * Returns: the value of the property, converted to QObject, or NULL if
27 struct QObject
*object_property_get_qobject(Object
*obj
, const char *name
,
31 * object_property_set_qobject:
33 * @ret: The value that will be written to the property.
34 * @name: the name of the property
35 * @errp: returns an error if this function fails
37 * Writes a property to a object.
39 void object_property_set_qobject(Object
*obj
, struct QObject
*qobj
,
40 const char *name
, struct Error
**errp
);