]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/lldb-private-forward.h
Merge llvm trunk r351319, resolve conflicts, and update FREEBSD-Xlist.
[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 // --------------------------------------------------------------- Class
19 // 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 // --------------------------------------------------------------- SP/WP decls.
30 // ---------------------------------------------------------------
31 typedef std::shared_ptr<NativeBreakpoint> NativeBreakpointSP;
32 }
33
34 #endif // #if defined(__cplusplus)
35 #endif // #ifndef LLDB_lldb_private_forward_h_