aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/lldb-private-forward.h
blob: 69a231132982148ac1e89d13dd0c0245e50b4358 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//===-- lldb-private-forward.h ----------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef LLDB_lldb_private_forward_h_
#define LLDB_lldb_private_forward_h_

#if defined(__cplusplus)

#include <memory>

namespace lldb_private {
// ---------------------------------------------------------------
// Class forward decls.
// ---------------------------------------------------------------
class NativeBreakpoint;
class NativeBreakpointList;
class NativeProcessProtocol;
class NativeRegisterContext;
class NativeThreadProtocol;
class ResumeActionList;
class UnixSignals;

// ---------------------------------------------------------------
// SP/WP decls.
// ---------------------------------------------------------------
typedef std::shared_ptr<NativeBreakpoint> NativeBreakpointSP;
typedef std::shared_ptr<lldb_private::NativeProcessProtocol>
    NativeProcessProtocolSP;
typedef std::weak_ptr<lldb_private::NativeProcessProtocol>
    NativeProcessProtocolWP;
typedef std::shared_ptr<lldb_private::NativeRegisterContext>
    NativeRegisterContextSP;
typedef std::shared_ptr<lldb_private::NativeThreadProtocol>
    NativeThreadProtocolSP;
}

#endif // #if defined(__cplusplus)
#endif // #ifndef LLDB_lldb_private_forward_h_