Sha256: ed4d97d74bcd88057d2edc065a260d559ae260845d6a99a4f6089677180a0c8f

Contents?: true

Size: 890 Bytes

Versions: 7

Compression:

Stored size: 890 Bytes

Contents

// Copyright (c) 2017-2022 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/json/

#ifndef TAO_JSON_JAXN_EVENTS_FROM_FILE_HPP
#define TAO_JSON_JAXN_EVENTS_FROM_FILE_HPP

#include <tao/pegtl/file_input.hpp>
#include <tao/pegtl/parse.hpp>

#include "../internal/action.hpp"
#include "../internal/errors.hpp"
#include "../internal/grammar.hpp"

#include "../../internal/filesystem.hpp"

namespace tao::json::jaxn::events
{
   // Events producer to parse a file containing a JAXN 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, internal::action, internal::errors >( in, consumer );
   }

}  // namespace tao::json::jaxn::events

#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/events/from_file.hpp
couchbase-3.4.4 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp
couchbase-3.4.3 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp
couchbase-3.4.2 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp
couchbase-3.4.1 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp
couchbase-3.4.0 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp
couchbase-3.3.0 ext/couchbase/third_party/json/include/tao/json/jaxn/events/from_file.hpp