diff options
Diffstat (limited to 'src/sord_internal.h')
-rw-r--r-- | src/sord_internal.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/sord_internal.h b/src/sord_internal.h index 727701f..6935de8 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -24,12 +24,13 @@ /** 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) - 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) + SerdNodeFlags flags; ///< String properties + SordNodeType type; ///< SordNodeType }; const char* |