1 //===-- ScriptInterpreterPythonInterfaces.h ---------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H
10 #define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H
12 #include "lldb/Core/PluginInterface.h"
13 #include "lldb/Host/Config.h"
14 #include "lldb/lldb-private.h"
16 #if LLDB_ENABLE_PYTHON
18 #include "OperatingSystemPythonInterface.h"
19 #include "ScriptedPlatformPythonInterface.h"
20 #include "ScriptedProcessPythonInterface.h"
21 #include "ScriptedStopHookPythonInterface.h"
22 #include "ScriptedThreadPlanPythonInterface.h"
24 namespace lldb_private
{
25 class ScriptInterpreterPythonInterfaces
: public PluginInterface
{
27 static void Initialize();
28 static void Terminate();
29 static llvm::StringRef
GetPluginNameStatic() {
30 return "script-interpreter-python-interfaces";
32 static llvm::StringRef
GetPluginDescriptionStatic();
34 } // namespace lldb_private
36 #endif // LLDB_ENABLE_PYTHON
37 #endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H