Sha256: 8007d5230b1fba0c147c51cf285d624ecb964e90cd419bb7beb5dab0321e3db4
Contents?: true
Size: 778 Bytes
Versions: 10
Compression:
Stored size: 778 Bytes
Contents
// Copyright (c) 2018-2020 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 <filesystem> #include "../../external/pegtl/file_input.hpp" #include "../../external/pegtl/parse.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 std::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
10 entries across 10 versions & 1 rubygems