diff options
Diffstat (limited to 'qom/object.c')
-rw-r--r-- | qom/object.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qom/object.c b/qom/object.c index 6a7bd92..c58c52d 100644 --- a/qom/object.c +++ b/qom/object.c @@ -151,6 +151,15 @@ TypeImpl *type_register_static(const TypeInfo *info) return type_register(info); } +void type_register_static_array(const TypeInfo *infos, int nr_infos) +{ + int i; + + for (i = 0; i < nr_infos; i++) { + type_register_static(&infos[i]); + } +} + static TypeImpl *type_get_by_name(const char *name) { if (name == NULL) { |