LLDB mainline
Version.h
Go to the documentation of this file.
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
14namespace 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.
19const char *GetVersion();
20
21} // namespace lldb_private
22
23#endif // LLDB_VERSION_VERSION_H
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
const char * GetVersion()
Retrieves a string representing the complete LLDB version, which includes the lldb version number,...
Definition: Version.cpp:38