//===-- Acceptor.h ----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_TOOLS_LLDB_SERVER_ACCEPTOR_H #define LLDB_TOOLS_LLDB_SERVER_ACCEPTOR_H #include "lldb/Host/Socket.h" #include "lldb/Utility/Connection.h" #include "lldb/Utility/Status.h" #include <functional> #include <memory> #include <string> namespace llvm { class StringRef; } namespace lldb_private { namespace lldb_server { class Acceptor { … }; } // namespace lldb_server } // namespace lldb_private #endif // LLDB_TOOLS_LLDB_SERVER_ACCEPTOR_H