diff options
author | David Robillard <d@drobilla.net> | 2018-12-26 14:21:37 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-13 19:15:32 +0200 |
commit | 14c2fe14b90c1057b2829b7008423ef9bf79edef (patch) | |
tree | 4cd0aa739097f9243d88553d43d4b26d0da17527 /serd | |
parent | 7734028901a428267b723f4b956deae91c45c1cf (diff) | |
download | serd-14c2fe14b90c1057b2829b7008423ef9bf79edef.tar.gz serd-14c2fe14b90c1057b2829b7008423ef9bf79edef.tar.bz2 serd-14c2fe14b90c1057b2829b7008423ef9bf79edef.zip |
Expose the node cache in the world
Diffstat (limited to 'serd')
-rw-r--r-- | serd/serd.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/serd/serd.h b/serd/serd.h index c23e0143..e764d069 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -891,6 +891,17 @@ void serd_world_free(SerdWorld* world); /** + Return the nodes cache in `world`. + + The returned cache is owned by the world and contains various nodes used + frequently by the implementation. For convenience, it may be used to store + additional nodes which will be freed when the world is freed. +*/ +SERD_API +SerdNodes* +serd_world_get_nodes(SerdWorld* world); + +/** Return a unique blank node. The returned node is valid only until the next time serd_world_get_blank() |