1 //===-- ScriptedPythonInterface.cpp ---------------------------------------===//
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 #include "lldb/Host/Config.h"
10 #include "lldb/Utility/Log.h"
11 #include "lldb/Utility/Logging.h"
12 #include "lldb/lldb-enumerations.h"
13 
14 #if LLDB_ENABLE_PYTHON
15 
16 // LLDB Python header must be included first
17 #include "lldb-python.h"
18 
19 #include "SWIGPythonBridge.h"
20 #include "ScriptInterpreterPythonImpl.h"
21 #include "ScriptedPythonInterface.h"
22 
23 using namespace lldb;
24 using namespace lldb_private;
25 
26 ScriptedPythonInterface::ScriptedPythonInterface(
27     ScriptInterpreterPythonImpl &interpreter)
28     : ScriptedInterface(), m_interpreter(interpreter) {}
29 
30 Status
31 ScriptedPythonInterface::GetStatusFromMethod(llvm::StringRef method_name) {
32   Status error;
33   Dispatch<Status>(method_name, error);
34 
35   return error;
36 }
37 
38 #endif
39