]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
Merge from upstream at 4189ef5d from https://github.com/onetrueawk/awk.git
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / include / lldb / API / SBLanguageRuntime.h
1 //===-- SBLanguageRuntime.h -------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLDB_SBLanguageRuntime_h_
11 #define LLDB_SBLanguageRuntime_h_
12
13 #include "lldb/API/SBDefines.h"
14
15 namespace lldb {
16
17 class SBLanguageRuntime {
18 public:
19   static lldb::LanguageType GetLanguageTypeFromString(const char *string);
20
21   static const char *GetNameForLanguageType(lldb::LanguageType language);
22 };
23
24 } // namespace lldb
25
26 #endif // LLDB_SBLanguageRuntime_h_