Sha256: febe92d6ba9c709c81e852db370518e0bd459f1979092bb7da8721d844982a37
Contents?: true
Size: 786 Bytes
Versions: 7
Compression:
Stored size: 786 Bytes
Contents
// Copyright (c) 2018-2022 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_CBOR_EVENTS_FROM_FILE_HPP #define TAO_JSON_CBOR_EVENTS_FROM_FILE_HPP #include <tao/pegtl/file_input.hpp> #include <tao/pegtl/parse.hpp> #include "../../internal/filesystem.hpp" #include "../internal/grammar.hpp" namespace tao::json::cbor::events { // Events producer to parse a file containing a CBOR string representation. template< typename Consumer > void from_file( Consumer& consumer, const json::internal::filesystem::path& path ) { pegtl::file_input< pegtl::tracking_mode::lazy > in( path ); pegtl::parse< internal::grammar >( in, consumer ); } } // namespace tao::json::cbor::events #endif
Version data entries
7 entries across 7 versions & 1 rubygems