Sha256: 8e5d71451369074513f5ac3c1fa97fb3c01de04b905f90ec31f7f4a4d77d7399

Contents?: true

Size: 1.39 KB

Versions: 34

Compression:

Stored size: 1.39 KB

Contents

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

#ifndef TAO_JSON_CBOR_EVENTS_FROM_INPUT_HPP
#define TAO_JSON_CBOR_EVENTS_FROM_INPUT_HPP

#include <utility>

#include "../../external/pegtl/parse.hpp"

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

namespace tao::json::cbor::events
{
   // Events producers that parse CBOR from a PEGTL input (or something compatible).

   template< typename Consumer, typename Input >
   void from_input( Consumer& consumer, Input&& in )
   {
      pegtl::parse< cbor::internal::grammar >( std::forward< Input >( in ), consumer );
   }

   template< typename Consumer, typename Input >
   void from_input_embedded( Consumer& consumer, Input&& in )
   {
      pegtl::parse< cbor::internal::embedded >( std::forward< Input >( in ), consumer );
   }

   template< typename Consumer, typename Outer, typename Input >
   void from_input_nested( Consumer& consumer, const Outer& oi, Input&& in )
   {
      pegtl::parse_nested< cbor::internal::grammar >( oi, std::forward< Input >( in ), consumer );
   }

   template< typename Consumer, typename Outer, typename Input >
   void from_input_embedded_nested( Consumer& consumer, const Outer& oi, Input&& in )
   {
      pegtl::parse_nested< cbor::internal::embedded >( oi, std::forward< Input >( in ), consumer );
   }

}  // namespace tao::json::cbor::events

#endif

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
couchbase-3.2.0-universal-darwin-20 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.2.0 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.1.1 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.1.1-universal-darwin-20 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.1.0 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.3 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.3-universal-darwin-20 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.2 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.1-universal-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.1 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0-universal-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.beta.1-universal-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.beta.1 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.5-x86_64-linux ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.5-universal-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.5-x86_64-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.5 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.4-x86_64-linux ext/third_party/json/include/tao/json/cbor/events/from_input.hpp
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/json/include/tao/json/cbor/events/from_input.hpp