1 //===-- lldb-private.h ------------------------------------------*- C++ -*-===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef LLDB_LLDB_PRIVATE_H
10 #define LLDB_LLDB_PRIVATE_H
11 
12 #if defined(__cplusplus)
13 
14 #include "lldb/lldb-private-enumerations.h"
15 #include "lldb/lldb-private-interfaces.h"
16 #include "lldb/lldb-private-types.h"
17 #include "lldb/lldb-public.h"
18 
19 #endif // defined(__cplusplus)
20 
21 #endif // LLDB_LLDB_PRIVATE_H
22