diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-22 14:11:53 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-03 10:41:05 -0600 |
commit | 93c511a1adad281492f18b13e164ae4ac790c052 (patch) | |
tree | 8e5b0e703ca231c19af54a2ae49d0d9fff95f420 /include | |
parent | 18b6dade8c0799c48f5c5e124b8c407cd5e22e96 (diff) |
qom: allow object_class_foreach to take additional parameters to refine search
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qemu/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu/object.h b/include/qemu/object.h index ba37850a08..adbcfb1c1a 100644 --- a/include/qemu/object.h +++ b/include/qemu/object.h @@ -431,6 +431,7 @@ const char *object_class_get_name(ObjectClass *klass); ObjectClass *object_class_by_name(const char *typename); void object_class_foreach(void (*fn)(ObjectClass *klass, void *opaque), + const char *implements_type, bool include_abstract, void *opaque); #endif |