diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-02-01 16:58:47 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-02-07 13:52:40 +0100 |
commit | 9f5f135058e22a6f7b3d8ca02e388e502c0d161f (patch) | |
tree | cd9d2f4af08442c57ad5c021b31f9ca7bdb0dee2 /qom/Makefile | |
parent | b46d9b1082054cba5af5ccab584f0e22a5264057 (diff) | |
download | qemu-9f5f135058e22a6f7b3d8ca02e388e502c0d161f.tar.gz qemu-9f5f135058e22a6f7b3d8ca02e388e502c0d161f.tar.bz2 qemu-9f5f135058e22a6f7b3d8ca02e388e502c0d161f.zip |
qom: add QObject-based property get/set wrappers
Move the creation of QmpInputVisitor and QmpOutputVisitor from qmp.c
to qom/object.c, since it's the only practical way to access object
properties.
Keep this isolated such that it's easy to remove. At some point, we need
to remove all usage of QObject in the tree and replace it with GVariant.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom/Makefile')
-rw-r--r-- | qom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qom/Makefile b/qom/Makefile index f33f0be8c9..885a2631bb 100644 --- a/qom/Makefile +++ b/qom/Makefile @@ -1 +1 @@ -qom-y = object.o container.o +qom-y = object.o container.o qom-qobject.o |