aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-12-26 14:21:37 -0500
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:04 +0200
commitd94fa6a5e5599a7dcfda89bc582df36a0cd7f42e (patch)
tree6e45904dca5d83649e2f6247f52fb5b6848763a7 /src
parent5c5a3b0048eb024f9d6b4657778830731e4f1f87 (diff)
downloadserd-d94fa6a5e5599a7dcfda89bc582df36a0cd7f42e.tar.gz
serd-d94fa6a5e5599a7dcfda89bc582df36a0cd7f42e.tar.bz2
serd-d94fa6a5e5599a7dcfda89bc582df36a0cd7f42e.zip
Expose the node cache in the world
Diffstat (limited to 'src')
-rw-r--r--src/world.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c
index 7b8ea5b7..16e89566 100644
--- a/src/world.c
+++ b/src/world.c
@@ -109,6 +109,12 @@ serd_world_free(SerdWorld* world)
free(world);
}
+SerdNodes*
+serd_world_get_nodes(SerdWorld* world)
+{
+ return world->nodes;
+}
+
const SerdNode*
serd_world_get_blank(SerdWorld* world)
{