#ifndef QUICHE_HTTP2_TEST_TOOLS_HPACK_STRING_COLLECTOR_H_
#define QUICHE_HTTP2_TEST_TOOLS_HPACK_STRING_COLLECTOR_H_
#include <stddef.h>
#include <iosfwd>
#include <string>
#include "absl/strings/string_view.h"
#include "quiche/http2/hpack/decoder/hpack_string_decoder_listener.h"
#include "quiche/common/platform/api/quiche_export.h"
#include "quiche/common/platform/api/quiche_test.h"
namespace http2 {
namespace test {
struct QUICHE_NO_EXPORT HpackStringCollector
: public HpackStringDecoderListener { … };
bool operator==(const HpackStringCollector& a, const HpackStringCollector& b);
bool operator!=(const HpackStringCollector& a, const HpackStringCollector& b);
QUICHE_NO_EXPORT std::ostream& operator<<(std::ostream& out,
const HpackStringCollector& v);
}
}
#endif