diff options
Diffstat (limited to 'lldb/include/lldb/Target/DynamicLoader.h')
-rw-r--r-- | lldb/include/lldb/Target/DynamicLoader.h | 32 |
1 files changed, 30 insertions, 2 deletions
diff --git a/lldb/include/lldb/Target/DynamicLoader.h b/lldb/include/lldb/Target/DynamicLoader.h index 90899726f00..ced6ef44000 100644 --- a/lldb/include/lldb/Target/DynamicLoader.h +++ b/lldb/include/lldb/Target/DynamicLoader.h @@ -12,9 +12,37 @@ // Project includes #include "lldb/Core/PluginInterface.h" -#include "lldb/Utility/UUID.h" #include "lldb/Utility/Error.h" -#include "lldb/lldb-private.h" +#include "lldb/Utility/FileSpec.h" // for FileSpec +#include "lldb/Utility/UUID.h" +#include "lldb/lldb-defines.h" // for LLDB_INVALID_ADDRESS +#include "lldb/lldb-forward.h" // for ModuleSP, ThreadPlanSP +#include "lldb/lldb-private-enumerations.h" // for LazyBool, LazyBool::eLaz... +#include "lldb/lldb-types.h" // for addr_t + +#include <stddef.h> // for size_t +#include <stdint.h> // for int64_t +namespace lldb_private { +class ModuleList; +} +namespace lldb_private { +class Process; +} +namespace lldb_private { +class SectionList; +} +namespace lldb_private { +class Symbol; +} +namespace lldb_private { +class SymbolContext; +} +namespace lldb_private { +class SymbolContextList; +} +namespace lldb_private { +class Thread; +} namespace lldb_private { |