//===- ObjectYAML.h ---------------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_OBJECTYAML_OBJECTYAML_H #define LLVM_OBJECTYAML_OBJECTYAML_H #include "llvm/ObjectYAML/COFFYAML.h" #include "llvm/ObjectYAML/ELFYAML.h" #include "llvm/ObjectYAML/MachOYAML.h" #include "llvm/ObjectYAML/WasmYAML.h" #include "llvm/Support/YAMLTraits.h" #include namespace llvm { namespace yaml { class IO; struct YamlObjectFile { std::unique_ptr Elf; std::unique_ptr Coff; std::unique_ptr MachO; std::unique_ptr FatMachO; std::unique_ptr Wasm; }; template <> struct MappingTraits { static void mapping(IO &IO, YamlObjectFile &ObjectFile); }; } // end namespace yaml } // end namespace llvm #endif // LLVM_OBJECTYAML_OBJECTYAML_H