diff options
author | David Robillard <d@drobilla.net> | 2018-12-26 14:21:37 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-12-31 11:37:49 -0500 |
commit | 8790f785102ffc5b205ee1ea1fc2586164a6f383 (patch) | |
tree | 4ad21e9ef8cbb3124ea7ae9ff4745cfdd0d49bee /src | |
parent | b3c0633ba1421d6753b6b2c9dbcd46e51e6e55b3 (diff) | |
download | serd-8790f785102ffc5b205ee1ea1fc2586164a6f383.tar.gz serd-8790f785102ffc5b205ee1ea1fc2586164a6f383.tar.bz2 serd-8790f785102ffc5b205ee1ea1fc2586164a6f383.zip |
Expose the node cache in the world
Diffstat (limited to 'src')
-rw-r--r-- | src/world.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/world.c b/src/world.c index 0bc4f4bc..483c46a6 100644 --- a/src/world.c +++ b/src/world.c @@ -108,6 +108,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) { |