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