blob: 95153ba0cdcb3ddf3efd52e25267bd0c6854c995 [file] [log] [blame]
Ilia K7f836242015-04-28 12:51:16 +00001//===-- SWIG Interface for SBLanguageRuntime --------------------*- 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
10namespace lldb {
11
12class SBLanguageRuntime
13{
14public:
15 static lldb::LanguageType
16 GetLanguageTypeFromString (const char *string);
17
18 static const char *
19 GetNameForLanguageType (lldb::LanguageType language);
20};
21
22} // namespace lldb