//===- ObjectYAML.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 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/MinidumpYAML.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 Minidump; 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