//===-- Connection.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_UTILITY_CONNECTION_H #define LLDB_UTILITY_CONNECTION_H #include "lldb/lldb-defines.h" #include "lldb/lldb-enumerations.h" #include "lldb/lldb-forward.h" #include "llvm/ADT/StringRef.h" #include <ratio> #include <string> #include <cstddef> namespace lldb_private { class Status; template <typename Ratio> class Timeout; } namespace lldb_private { /// \class Connection Connection.h "lldb/Utility/Connection.h" /// A communication connection class. /// /// A class that implements that actual communication functions for /// connecting/disconnecting, reading/writing, and waiting for bytes to become /// available from a two way communication connection. /// /// This class is designed to only do very simple communication functions. /// Instances can be instantiated and given to a Communication class to /// perform communications where clients can listen for broadcasts, and /// perform other higher level communications. class Connection { … }; } // namespace lldb_private #endif // LLDB_UTILITY_CONNECTION_H