// Copyright (c) 2019 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_QUIC_CORE_STREAM_DELEGATE_INTERFACE_H_ #define QUICHE_QUIC_CORE_STREAM_DELEGATE_INTERFACE_H_ #include <cstddef> #include <optional> #include "quiche/quic/core/quic_stream_priority.h" #include "quiche/quic/core/quic_types.h" namespace quic { class QuicStream; // Pure virtual class to get notified when particular QuicStream events // occurred. class QUICHE_EXPORT StreamDelegateInterface { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_STREAM_DELEGATE_INTERFACE_H_