]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r308421, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / lldb-private-forward.h
1 //===-- lldb-private-forward.h ----------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLDB_lldb_private_forward_h_
11 #define LLDB_lldb_private_forward_h_
12
13 #if defined(__cplusplus)
14
15 #include <memory>
16
17 namespace lldb_private {
18 // ---------------------------------------------------------------
19 // Class forward decls.
20 // ---------------------------------------------------------------
21 class NativeBreakpoint;
22 class NativeBreakpointList;
23 class NativeProcessProtocol;
24 class NativeRegisterContext;
25 class NativeThreadProtocol;
26 class ResumeActionList;
27 class UnixSignals;
28
29 // ---------------------------------------------------------------
30 // SP/WP decls.
31 // ---------------------------------------------------------------
32 typedef std::shared_ptr<NativeBreakpoint> NativeBreakpointSP;
33 typedef std::shared_ptr<lldb_private::NativeRegisterContext>
34     NativeRegisterContextSP;
35 typedef std::shared_ptr<lldb_private::NativeThreadProtocol>
36     NativeThreadProtocolSP;
37 }
38
39 #endif // #if defined(__cplusplus)
40 #endif // #ifndef LLDB_lldb_private_forward_h_