// 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 CRDTP_PARSER_HANDLER_H_ #define CRDTP_PARSER_HANDLER_H_ #include <cstdint> #include "span.h" #include "status.h" namespace crdtp { // Handler interface for parser events emitted by a streaming parser. // See cbor::NewCBOREncoder, cbor::ParseCBOR, json::NewJSONEncoder, // json::ParseJSON. class ParserHandler { … }; } // namespace crdtp #endif // CRDTP_PARSER_HANDLER_H_