//===- llvm/TextAPI/RecordSlice.h - TAPI RecordSlice ------------*- 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 // //===----------------------------------------------------------------------===// /// /// \file /// \brief Implements the TAPI Record Collection Type. /// //===----------------------------------------------------------------------===// #ifndef LLVM_TEXTAPI_RECORDSLICE_H #define LLVM_TEXTAPI_RECORDSLICE_H #include "llvm/Support/Allocator.h" #include "llvm/TextAPI/FileTypes.h" #include "llvm/TextAPI/PackedVersion.h" #include "llvm/TextAPI/Record.h" #include "llvm/TextAPI/RecordVisitor.h" namespace llvm { namespace MachO { // Define collection of records for a library that are tied to a darwin target // triple. class RecordsSlice { … }; Records; class InterfaceFile; std::unique_ptr<InterfaceFile> convertToInterfaceFile(const Records &Slices); } // namespace MachO } // namespace llvm #endif // LLVM_TEXTAPI_RECORDSLICE_H