//===-- SBPlatform.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_API_SBPLATFORM_H #define LLDB_API_SBPLATFORM_H #include "lldb/API/SBDefines.h" #include "lldb/API/SBProcess.h" #include "lldb/API/SBProcessInfoList.h" #include <functional> struct PlatformConnectOptions; struct PlatformShellCommand; class ProcessInstanceInfoMatch; namespace lldb { class SBAttachInfo; class SBLaunchInfo; class LLDB_API SBPlatformConnectOptions { … }; class LLDB_API SBPlatformShellCommand { … }; class LLDB_API SBPlatform { … }; } // namespace lldb #endif // LLDB_API_SBPLATFORM_H