//===- MachOUniversal.h - Mach-O universal binaries -------------*- 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 // //===----------------------------------------------------------------------===// // // This file declares Mach-O fat/universal binaries. // //===----------------------------------------------------------------------===// #ifndef LLVM_OBJECT_MACHOUNIVERSAL_H #define LLVM_OBJECT_MACHOUNIVERSAL_H #include "llvm/ADT/iterator_range.h" #include "llvm/BinaryFormat/MachO.h" #include "llvm/Object/Binary.h" #include "llvm/Object/MachO.h" #include "llvm/TargetParser/Triple.h" namespace llvm { class StringRef; class LLVMContext; namespace object { class Archive; class IRObjectFile; class MachOUniversalBinary : public Binary { … }; } } #endif