1 //===-- Version.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_VERSION_VERSION_H
10 #define LLDB_VERSION_VERSION_H
11 
12 #include <string>
13 
14 namespace lldb_private {
15 
16 /// Retrieves a string representing the complete LLDB version, which includes
17 /// the lldb version number, as well as embedded compiler versions and the
18 /// vendor tag.
19 const char *GetVersion();
20 
21 } // namespace lldb_private
22 
23 #endif // LLDB_VERSION_VERSION_H
24