brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · b2a3479 Raw
41 lines · c
1//===-- ScriptInterpreterPythonInterfaces.h ---------------------*- 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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H10#define LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H11 12#include "lldb/Core/PluginInterface.h"13#include "lldb/Host/Config.h"14#include "lldb/lldb-private.h"15 16#if LLDB_ENABLE_PYTHON17 18#include "OperatingSystemPythonInterface.h"19#include "ScriptedBreakpointPythonInterface.h"20#include "ScriptedFrameProviderPythonInterface.h"21#include "ScriptedFramePythonInterface.h"22#include "ScriptedPlatformPythonInterface.h"23#include "ScriptedProcessPythonInterface.h"24#include "ScriptedStopHookPythonInterface.h"25#include "ScriptedThreadPlanPythonInterface.h"26 27namespace lldb_private {28class ScriptInterpreterPythonInterfaces : public PluginInterface {29public:30  static void Initialize();31  static void Terminate();32  static llvm::StringRef GetPluginNameStatic() {33    return "script-interpreter-python-interfaces";34  }35  static llvm::StringRef GetPluginDescriptionStatic();36};37} // namespace lldb_private38 39#endif // LLDB_ENABLE_PYTHON40#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_SCRIPTINTERPRETERPYTHONINTERFACES_H41