//===-- ObjectFileCOFF.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_OBJECTFILE_COFF_OBJECTFILECOFF_H #define LLDB_SOURCE_PLUGINS_OBJECTFILE_COFF_OBJECTFILECOFF_H #include "lldb/Symbol/ObjectFile.h" #include "llvm/Object/COFF.h" /// \class ObjectFileELF /// Generic COFF object file reader. /// /// This class provides a generic COFF reader plugin implementing the ObjectFile /// protocol. Assumes that the COFF object format is a Microsoft style COFF /// rather than the full generality afforded by it. class ObjectFileCOFF : public lldb_private::ObjectFile { … }; #endif