Sha256: e9805e6dc85293ef765f2c0329093343b91db8f98c7273d69cb2afc17dda6010
Contents?: true
Size: 801 Bytes
Versions: 7
Compression:
Stored size: 801 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_MSGPACK_EVENTS_FROM_FILE_HPP #define TAO_JSON_MSGPACK_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::msgpack::events { // Events producer to parse a file containing a MSGPACK 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::msgpack::events #endif
Version data entries
7 entries across 7 versions & 1 rubygems