diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/src/world.h b/src/world.h index 99f0c92d..44e21166 100644 --- a/src/world.h +++ b/src/world.h @@ -23,10 +23,18 @@ #include <stdio.h> struct SerdWorldImpl { - SerdErrorFunc error_func; - void* error_handle; - uint32_t next_blank_id; - SerdNode* blank_node; + SerdNodes* nodes; + SerdErrorFunc error_func; + void* error_handle; + SerdNode* blank_node; + const SerdNode* rdf_first; + const SerdNode* rdf_nil; + const SerdNode* rdf_rest; + const SerdNode* rdf_type; + const SerdNode* xsd_boolean; + const SerdNode* xsd_decimal; + const SerdNode* xsd_integer; + uint32_t next_blank_id; }; /// Open a file configured for fast sequential reading |