//===-- ObjectFileJIT.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_EXPRESSION_OBJECTFILEJIT_H #define LLDB_EXPRESSION_OBJECTFILEJIT_H #include "lldb/Core/Address.h" #include "lldb/Core/Section.h" #include "lldb/Symbol/ObjectFile.h" #include "lldb/Symbol/Symtab.h" #include "lldb/Utility/ArchSpec.h" namespace lldb_private { class ObjectFileJITDelegate { … }; class ObjectFileJIT : public ObjectFile { … }; } // namespace lldb_private #endif // LLDB_EXPRESSION_OBJECTFILEJIT_H