qom-qobject.c (a642153013b2d0af106c0d4b9a637677d1e2c010) | qom-qobject.c (7b1b5d191385ca52e96caae2a05c64f3a63855d9) |
---|---|
1/* 2 * QEMU Object Model - QObject wrappers 3 * 4 * Copyright (C) 2012 Red Hat, Inc. 5 * 6 * Author: Paolo Bonzini <pbonzini@redhat.com> 7 * 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. 10 */ 11 12#include "qemu-common.h" 13#include "qemu/object.h" 14#include "qemu/qom-qobject.h" | 1/* 2 * QEMU Object Model - QObject wrappers 3 * 4 * Copyright (C) 2012 Red Hat, Inc. 5 * 6 * Author: Paolo Bonzini <pbonzini@redhat.com> 7 * 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. 10 */ 11 12#include "qemu-common.h" 13#include "qemu/object.h" 14#include "qemu/qom-qobject.h" |
15#include "qapi/qapi-visit-core.h" | 15#include "qapi/visitor.h" |
16#include "qapi/qmp-input-visitor.h" 17#include "qapi/qmp-output-visitor.h" 18 19void object_property_set_qobject(Object *obj, QObject *value, 20 const char *name, Error **errp) 21{ 22 QmpInputVisitor *mi; 23 mi = qmp_input_visitor_new(value); --- 21 unchanged lines hidden --- | 16#include "qapi/qmp-input-visitor.h" 17#include "qapi/qmp-output-visitor.h" 18 19void object_property_set_qobject(Object *obj, QObject *value, 20 const char *name, Error **errp) 21{ 22 QmpInputVisitor *mi; 23 mi = qmp_input_visitor_new(value); --- 21 unchanged lines hidden --- |