Sha256: 2582dafe1d1e0bbb9c093d4cfcf81b4e3fd6c34c2e3cbfb82977329df47b8000
Contents?: true
Size: 815 Bytes
Versions: 10
Compression:
Stored size: 815 Bytes
Contents
// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_EVENTS_FROM_FILE_HPP #define TAO_JSON_EVENTS_FROM_FILE_HPP #include <filesystem> #include "../internal/action.hpp" #include "../internal/errors.hpp" #include "../internal/grammar.hpp" #include "../external/pegtl/file_input.hpp" namespace tao::json::events { // Events producer to parse a file containing a JSON 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, internal::action, internal::errors >( in, consumer ); } } // namespace tao::json::events #endif
Version data entries
10 entries across 10 versions & 1 rubygems