1061da546Spatrick //===-- SWIG Interface for SBLanguageRuntime --------------------*- C++ -*-===// 2061da546Spatrick // 3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6061da546Spatrick // 7061da546Spatrick //===----------------------------------------------------------------------===// 8061da546Spatrick 9061da546Spatrick namespace lldb { 10061da546Spatrick 11*be691f3bSpatrick %feature("docstring", 12*be691f3bSpatrick "Utility functions for :ref:`LanguageType`" 13*be691f3bSpatrick ) SBLanguageRuntime; 14061da546Spatrick class SBLanguageRuntime 15061da546Spatrick { 16061da546Spatrick public: 17061da546Spatrick static lldb::LanguageType 18061da546Spatrick GetLanguageTypeFromString (const char *string); 19061da546Spatrick 20061da546Spatrick static const char * 21061da546Spatrick GetNameForLanguageType (lldb::LanguageType language); 22061da546Spatrick }; 23061da546Spatrick 24061da546Spatrick } // namespace lldb 25