#ifndef LLDB_CORE_PLUGINMANAGER_H
#define LLDB_CORE_PLUGINMANAGER_H
#include "lldb/Core/Architecture.h"
#include "lldb/Interpreter/Interfaces/ScriptedInterfaceUsages.h"
#include "lldb/Symbol/TypeSystem.h"
#include "lldb/Utility/CompletionRequest.h"
#include "lldb/Utility/FileSpec.h"
#include "lldb/Utility/Status.h"
#include "lldb/lldb-enumerations.h"
#include "lldb/lldb-forward.h"
#include "lldb/lldb-private-interfaces.h"
#include "llvm/ADT/StringRef.h"
#include <cstddef>
#include <cstdint>
#define LLDB_PLUGIN_DEFINE_ADV(ClassName, PluginName) …
#define LLDB_PLUGIN_DEFINE(PluginName) …
#define LLDB_PLUGIN_DECLARE(PluginName) …
#define LLDB_PLUGIN_INITIALIZE(PluginName) …
#define LLDB_PLUGIN_TERMINATE(PluginName) …
namespace lldb_private {
class CommandInterpreter;
class Debugger;
class StringList;
class PluginManager { … };
}
#endif