.. _program_listing_file_src_rdf4cpp_parser_ParsingState.hpp: Program Listing for File ParsingState.hpp ========================================= |exhale_lsh| :ref:`Return to documentation for file ` (``src/rdf4cpp/parser/ParsingState.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #ifndef RDF4CPP_RDF_PARSER_PARSINGSTATE_HPP #define RDF4CPP_RDF_PARSER_PARSINGSTATE_HPP #include #include #include #include namespace rdf4cpp::parser { struct ParsingState { IRIFactory iri_factory{}; storage::DynNodeStoragePtr node_storage = storage::default_node_storage; bnode_mngt::DynNodeScopeManagerPtr blank_node_scope_manager = nullptr; std::function inspect_node_func = []([[maybe_unused]] Node const &n) { /* noop */ }; }; } //namespace rdf4cpp::parser #endif //RDF4CPP_RDF_PARSER_PARSINGSTATE_HPP