// 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_CONSUME_FILE_HPP #define TAO_JSON_CBOR_CONSUME_FILE_HPP #include #include "../external/pegtl/file_input.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 std::filesystem::path& path ) { cbor::basic_parts_parser< utf8_mode::check, 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 std::filesystem::path& path, T& t ) { cbor::basic_parts_parser< utf8_mode::check, pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path ); json::consume< Traits >( pp, t ); } } // namespace tao::json::cbor #endif