Sha256: 172968b75b6e4ab6ec996393003f0e2dff07359af8846aef99ae68e583bac677

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 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_JAXN_CONSUME_FILE_HPP
#define TAO_JSON_JAXN_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::jaxn
{
   template< typename T, template< typename... > class Traits = traits >
   [[nodiscard]] T consume_file( const json::internal::filesystem::path& path )
   {
      jaxn::basic_parts_parser< 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 )
   {
      jaxn::basic_parts_parser< pegtl::file_input< pegtl::tracking_mode::lazy > > pp( path );
      json::consume< Traits >( pp, t );
   }

}  // namespace tao::json::jaxn

#endif

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
couchbase-3.4.5 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.4.4 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.4.3 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.4.2 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.4.1 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.4.0 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp
couchbase-3.3.0 ext/couchbase/third_party/json/include/tao/json/jaxn/consume_file.hpp