Sha256: e9805e6dc85293ef765f2c0329093343b91db8f98c7273d69cb2afc17dda6010

Contents?: true

Size: 801 Bytes

Versions: 7

Compression:

Stored size: 801 Bytes

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_MSGPACK_EVENTS_FROM_FILE_HPP
#define TAO_JSON_MSGPACK_EVENTS_FROM_FILE_HPP

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

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

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

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

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