//===-- ProcessLaunchInfo.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_PROCESSLAUNCHINFO_H #define LLDB_HOST_PROCESSLAUNCHINFO_H // C++ Headers #include <string> // LLDB Headers #include "lldb/Utility/Flags.h" #include "lldb/Host/FileAction.h" #include "lldb/Host/Host.h" #include "lldb/Host/PseudoTerminal.h" #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/ProcessInfo.h" namespace lldb_private { // ProcessLaunchInfo // // Describes any information that is required to launch a process. class ProcessLaunchInfo : public ProcessInfo { … }; } #endif // LLDB_HOST_PROCESSLAUNCHINFO_H