//===-- Terminal.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_HOST_TERMINAL_H #define LLDB_HOST_TERMINAL_H #include "lldb/lldb-private.h" #include "llvm/Support/Error.h" namespace lldb_private { class TerminalState; class Terminal { … }; /// \class TerminalState Terminal.h "lldb/Host/Terminal.h" /// A RAII-friendly terminal state saving/restoring class. /// /// This class can be used to remember the terminal state for a file /// descriptor and later restore that state as it originally was. class TerminalState { … }; } // namespace lldb_private #endif // LLDB_HOST_TERMINAL_H