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-defines.h" 15 #include "lldb/lldb-private-enumerations.h" 16 #include "lldb/lldb-private-interfaces.h" 17 #include "lldb/lldb-private-types.h" 18 #include "lldb/lldb-public.h" 19 20 namespace lldb_private { 21 22 const char *GetVersion(); 23 24 } // namespace lldb_private 25 26 #endif // defined(__cplusplus) 27 28 #endif // LLDB_LLDB_PRIVATE_H 29