// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_CRDTP_PARSER_HANDLER_H_ #define V8_CRDTP_PARSER_HANDLER_H_ #include <cstdint> #include "span.h" #include "status.h" namespace v8_crdtp { // Handler interface for parser events emitted by a streaming parser. // See cbor::NewCBOREncoder, cbor::ParseCBOR, json::NewJSONEncoder, // json::ParseJSON. class ParserHandler { … }; } // namespace v8_crdtp #endif // V8_CRDTP_PARSER_HANDLER_H_