// Copyright 2024 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_TOOLS_INTERACTIVE_CLI_H_ #define QUICHE_QUIC_TOOLS_INTERACTIVE_CLI_H_ #include <memory> #include <string> #include "absl/strings/string_view.h" #include "quiche/quic/core/io/quic_event_loop.h" #include "quiche/quic/core/io/socket.h" #include "quiche/common/quiche_callbacks.h" namespace quic { // InteractiveCli is a tool that lets the user type input while the program is // outputting things into the terminal. Only works on Unix-like platforms. class InteractiveCli : public QuicSocketEventListener { … }; } // namespace quic #endif // QUICHE_QUIC_TOOLS_INTERACTIVE_CLI_H_