// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef QUICHE_HTTP2_HPACK_HPACK_OUTPUT_STREAM_H_ #define QUICHE_HTTP2_HPACK_HPACK_OUTPUT_STREAM_H_ #include <cstddef> #include <cstdint> #include <string> #include "absl/strings/string_view.h" #include "quiche/http2/hpack/hpack_constants.h" #include "quiche/common/platform/api/quiche_export.h" // All section references below are to // http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-08 namespace spdy { // An HpackOutputStream handles all the low-level details of encoding // header fields. class QUICHE_EXPORT HpackOutputStream { … }; } // namespace spdy #endif // QUICHE_HTTP2_HPACK_HPACK_OUTPUT_STREAM_H_