From 0cac4ca3916ac24ab6139d03cbfd18db9e715bfe Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 25 Nov 2014 21:00:58 +0000 Subject: Import LLDB as of upstream SVN r216948 (git 50f7fe44) This corresponds with the branchpoint for the 3.5 release. A number of files not required for the FreeBSD build have been removed. Sponsored by: DARPA, AFRL --- include/lldb/lldb-private-forward.h | 41 +++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 include/lldb/lldb-private-forward.h (limited to 'include/lldb/lldb-private-forward.h') diff --git a/include/lldb/lldb-private-forward.h b/include/lldb/lldb-private-forward.h new file mode 100644 index 000000000000..424aa4cc53f4 --- /dev/null +++ b/include/lldb/lldb-private-forward.h @@ -0,0 +1,41 @@ +//===-- 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 + +namespace lldb_private +{ + // --------------------------------------------------------------- + // Class forward decls. + // --------------------------------------------------------------- + class NativeBreakpoint; + class NativeBreakpointList; + class NativeProcessProtocol; + class NativeRegisterContext; + class NativeThreadProtocol; + class UnixSignals; + + // --------------------------------------------------------------- + // SP/WP decls. + // --------------------------------------------------------------- + typedef std::shared_ptr NativeBreakpointSP; + typedef std::shared_ptr NativeProcessProtocolSP; + typedef std::weak_ptr NativeProcessProtocolWP; + typedef std::shared_ptr NativeRegisterContextSP; + typedef std::shared_ptr NativeThreadProtocolSP; + typedef std::shared_ptr UnixSignalsSP; +} + +#endif // #if defined(__cplusplus) +#endif // #ifndef LLDB_lldb_private_forward_h_ -- cgit v1.2.3