Sha256: 4e9e9a02c5450e4806fbc08ccf42f2bd0e46fa16df3be1f4b8c275a4fbed9ddb

Contents?: true

Size: 1.24 KB

Versions: 34

Compression:

Stored size: 1.24 KB

Contents

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

#ifndef TAO_JSON_EVENTS_DISCARD_HPP
#define TAO_JSON_EVENTS_DISCARD_HPP

#include <cstddef>
#include <cstdint>
#include <string_view>

#include "../binary_view.hpp"

namespace tao::json::events
{
   // Events consumer that discards events.

   struct discard
   {
      void null() noexcept {}

      void boolean( const bool /*unused*/ ) noexcept {}

      void number( const std::int64_t /*unused*/ ) noexcept {}
      void number( const std::uint64_t /*unused*/ ) noexcept {}
      void number( const double /*unused*/ ) noexcept {}

      void string( const std::string_view /*unused*/ ) noexcept {}

      void binary( const tao::binary_view /*unused*/ ) noexcept {}

      void begin_array( const std::size_t /*unused*/ = 0 ) noexcept {}
      void element() noexcept {}
      void end_array( const std::size_t /*unused*/ = 0 ) noexcept {}

      void begin_object( const std::size_t /*unused*/ = 0 ) noexcept {}
      void key( const std::string_view /*unused*/ ) noexcept {}
      void member() noexcept {}
      void end_object( const std::size_t /*unused*/ = 0 ) noexcept {}
   };

}  // namespace tao::json::events

#endif

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.4 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.3-x86_64-linux ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.3-x86_64-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.3-universal-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.3 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.2-x86_64-linux ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.2-x86_64-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.2-universal-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.2 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.1-x86_64-linux ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.1-x86_64-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.1-universal-darwin-19 ext/third_party/json/include/tao/json/events/discard.hpp
couchbase-3.0.0.alpha.1 ext/third_party/json/include/tao/json/events/discard.hpp