diff options
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/sord_internal.h b/src/sord_internal.h index 6935de8..6a5daf8 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -24,13 +24,14 @@ /** Node */ struct SordNodeImpl { - uint8_t* buf; ///< Value (string) - const char* lang; ///< Literal language (interned string) - SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) - size_t n_bytes; ///< Length of data in bytes (including NULL) - size_t refs; ///< Reference count (# of containing quads) - SerdNodeFlags flags; ///< String properties - SordNodeType type; ///< SordNodeType + uint8_t* buf; ///< Value (string) + const char* lang; ///< Literal language (interned string) + SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) + size_t n_bytes; ///< Length of data in bytes (including NULL) + size_t refs; ///< Reference count (# of containing quads) + size_t refs_as_obj; ///< References as a quad object + SerdNodeFlags flags; ///< String properties + SordNodeType type; ///< SordNodeType }; const char* |