Sha256: dfb09aaa2af4b92c1493a6e0d5bc55f6b325e97ecf4d88a14eb66cf24b2fba79

Contents?: true

Size: 858 Bytes

Versions: 7

Compression:

Stored size: 858 Bytes

Contents

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

#ifndef TAO_JSON_EVENTS_FROM_FILE_HPP
#define TAO_JSON_EVENTS_FROM_FILE_HPP

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

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

namespace tao::json::events
{
   // Events producer to parse a file containing a JSON string representation.

   template< typename Consumer >
   void from_file( Consumer& consumer, const 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::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/events/from_file.hpp
couchbase-3.4.4 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.4.3 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.4.2 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.4.1 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.4.0 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp
couchbase-3.3.0 ext/couchbase/third_party/json/include/tao/json/events/from_file.hpp