Sha256: b29767e9155704a1feec6e390dc0289d4b4f9c4728411b3461b710878265773a
Contents?: true
Size: 1.06 KB
Versions: 7
Compression:
Stored size: 1.06 KB
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_CONSUME_FILE_HPP #define TAO_JSON_CBOR_CONSUME_FILE_HPP #include <tao/pegtl/file_input.hpp> #include "../internal/filesystem.hpp" #include "../consume.hpp" #include "../forward.hpp" #include "parts_parser.hpp" namespace tao::json::cbor { template< typename T, template< typename... > class Traits = traits > [[nodiscard]] T consume_file( const json::internal::filesystem::path& path ) { cbor::basic_parts_parser< utf8_mode::check, 8, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path ); return json::consume< T, Traits >( pp ); } template< template< typename... > class Traits = traits, typename T > void consume_file( const json::internal::filesystem::path& path, T& t ) { cbor::basic_parts_parser< utf8_mode::check, 8, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path ); json::consume< Traits >( pp, t ); } } // namespace tao::json::cbor #endif
Version data entries
7 entries across 7 versions & 1 rubygems