diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2014-03-03 11:30:02 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-03-13 14:23:27 +0100 |
commit | 11f590b1a242492a0108da42f40f0e2b20f0a778 (patch) | |
tree | 549ec3d3d25ecb39c2141fb914f1433c928bbb13 /include/qom | |
parent | b5042a36229b4fa5eeb66bbcde78f704975aec00 (diff) | |
download | qemu-11f590b1a242492a0108da42f40f0e2b20f0a778.zip |
object: add object_get_canonical_path_component()
It is often useful to find an object's child property name. Also use
this new function to simplify the implementation of
object_get_canonical_path().
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/qom')
-rw-r--r-- | include/qom/object.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/qom/object.h b/include/qom/object.h index 9c7c361d30..4cd77049e4 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -974,6 +974,14 @@ const char *object_property_get_type(Object *obj, const char *name, Object *object_get_root(void); /** + * object_get_canonical_path_component: + * + * Returns: The final component in the object's canonical path. The canonical + * path is the path within the composition tree starting from the root. + */ +gchar *object_get_canonical_path_component(Object *obj); + +/** * object_get_canonical_path: * * Returns: The canonical path for a object. This is the path within the |