Todd Fiala | af245d1 | 2014-06-30 21:05:18 +0000 | [diff] [blame] | 1 | //===-- lldb-private-forward.h ----------------------------------*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 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 |
Todd Fiala | af245d1 | 2014-06-30 21:05:18 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Jonas Devlieghere | cdc514e | 2020-02-17 15:57:45 -0800 | [diff] [blame] | 9 | #ifndef LLDB_LLDB_PRIVATE_FORWARD_H |
| 10 | #define LLDB_LLDB_PRIVATE_FORWARD_H |
Todd Fiala | af245d1 | 2014-06-30 21:05:18 +0000 | [diff] [blame] | 11 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 12 | namespace lldb_private { |
Adrian Prantl | 0509724 | 2018-04-30 16:49:04 +0000 | [diff] [blame] | 13 | // forward decls. |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 14 | class NativeProcessProtocol; |
| 15 | class NativeRegisterContext; |
| 16 | class NativeThreadProtocol; |
| 17 | class ResumeActionList; |
| 18 | class UnixSignals; |
Todd Fiala | af245d1 | 2014-06-30 21:05:18 +0000 | [diff] [blame] | 19 | } |
| 20 | |
Jonas Devlieghere | cdc514e | 2020-02-17 15:57:45 -0800 | [diff] [blame] | 21 | #endif // LLDB_LLDB_PRIVATE_FORWARD_H |