1061da546Spatrick //===-- lldb-private-forward.h ----------------------------------*- C++ -*-===//
2061da546Spatrick //
3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information.
5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6061da546Spatrick //
7061da546Spatrick //===----------------------------------------------------------------------===//
8061da546Spatrick 
9*dda28197Spatrick #ifndef LLDB_LLDB_PRIVATE_FORWARD_H
10*dda28197Spatrick #define LLDB_LLDB_PRIVATE_FORWARD_H
11061da546Spatrick 
12061da546Spatrick namespace lldb_private {
13061da546Spatrick // forward decls.
14061da546Spatrick class NativeProcessProtocol;
15061da546Spatrick class NativeRegisterContext;
16061da546Spatrick class NativeThreadProtocol;
17061da546Spatrick class ResumeActionList;
18061da546Spatrick class UnixSignals;
19061da546Spatrick }
20061da546Spatrick 
21*dda28197Spatrick #endif // LLDB_LLDB_PRIVATE_FORWARD_H
22