1//===-- DAPForward.h --------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_TOOLS_LLDB_DAP_DAPFORWARD_H
10#define LLDB_TOOLS_LLDB_DAP_DAPFORWARD_H
11
12namespace lldb_dap {
13struct BreakpointBase;
14struct ExceptionBreakpoint;
15struct FunctionBreakpoint;
16struct SourceBreakpoint;
17struct Watchpoint;
18} // namespace lldb_dap
19
20namespace lldb {
21class SBAttachInfo;
22class SBBreakpoint;
23class SBBreakpointLocation;
24class SBCommandInterpreter;
25class SBCommandReturnObject;
26class SBCommunication;
27class SBDebugger;
28class SBEvent;
29class SBFrame;
30class SBHostOS;
31class SBInstruction;
32class SBInstructionList;
33class SBLanguageRuntime;
34class SBLaunchInfo;
35class SBLineEntry;
36class SBListener;
37class SBProcess;
38class SBStream;
39class SBStringList;
40class SBTarget;
41class SBThread;
42class SBValue;
43class SBWatchpoint;
44} // namespace lldb
45
46#endif
47

source code of lldb/tools/lldb-dap/DAPForward.h