1 //===-- SWIG Interface for SBLanguageRuntime --------------------*- 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 namespace lldb {
10 
11 %feature("docstring",
12 "Utility functions for :ref:`LanguageType`"
13 ) SBLanguageRuntime;
14 class SBLanguageRuntime
15 {
16 public:
17     static lldb::LanguageType
18     GetLanguageTypeFromString (const char *string);
19 
20     static const char *
21     GetNameForLanguageType (lldb::LanguageType language);
22 };
23 
24 } // namespace lldb
25