//===-- ScriptedThread.h ----------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_SOURCE_PLUGINS_SCRIPTED_THREAD_H #define LLDB_SOURCE_PLUGINS_SCRIPTED_THREAD_H #include <string> #include "ScriptedProcess.h" #include "Plugins/Process/Utility/RegisterContextMemory.h" #include "lldb/Interpreter/ScriptInterpreter.h" #include "lldb/Target//DynamicRegisterInfo.h" #include "lldb/Target/Thread.h" namespace lldb_private { class ScriptedProcess; } namespace lldb_private { class ScriptedThread : public lldb_private::Thread { … }; } // namespace lldb_private #endif // LLDB_SOURCE_PLUGINS_SCRIPTED_THREAD_H