diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h index dd3d4043..b330d4e4 100644 --- a/src/world.h +++ b/src/world.h @@ -5,14 +5,18 @@ #define SERD_SRC_WORLD_H #include "serd/error.h" +#include "serd/node.h" #include "serd/status.h" #include "serd/world.h" +#include <stdint.h> #include <stdio.h> struct SerdWorldImpl { SerdErrorFunc error_func; void* error_handle; + uint32_t next_blank_id; + SerdNode* blank_node; }; /// Open a file configured for fast sequential reading |