1275072Semaste//===-- lldb-private-forward.h ----------------------------------*- C++ -*-===//
2275072Semaste//
3353358Sdim// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4353358Sdim// See https://llvm.org/LICENSE.txt for license information.
5353358Sdim// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6275072Semaste//
7275072Semaste//===----------------------------------------------------------------------===//
8275072Semaste
9275072Semaste#ifndef LLDB_lldb_private_forward_h_
10275072Semaste#define LLDB_lldb_private_forward_h_
11275072Semaste
12314564Sdimnamespace lldb_private {
13341825Sdim// forward decls.
14314564Sdimclass NativeProcessProtocol;
15314564Sdimclass NativeRegisterContext;
16314564Sdimclass NativeThreadProtocol;
17314564Sdimclass ResumeActionList;
18314564Sdimclass UnixSignals;
19275072Semaste}
20275072Semaste
21275072Semaste#endif // #ifndef LLDB_lldb_private_forward_h_
22