1//===- InstallAPI/MachO.h ---------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Imports and forward declarations for llvm::MachO types.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_INSTALLAPI_MACHO_H
14#define LLVM_CLANG_INSTALLAPI_MACHO_H
15
16#include "llvm/TextAPI/Architecture.h"
17#include "llvm/TextAPI/InterfaceFile.h"
18#include "llvm/TextAPI/PackedVersion.h"
19#include "llvm/TextAPI/Platform.h"
20#include "llvm/TextAPI/RecordVisitor.h"
21#include "llvm/TextAPI/Symbol.h"
22#include "llvm/TextAPI/Target.h"
23#include "llvm/TextAPI/TextAPIWriter.h"
24#include "llvm/TextAPI/Utils.h"
25
26using AliasMap = llvm::MachO::AliasMap;
27using Architecture = llvm::MachO::Architecture;
28using ArchitectureSet = llvm::MachO::ArchitectureSet;
29using SymbolFlags = llvm::MachO::SymbolFlags;
30using RecordLinkage = llvm::MachO::RecordLinkage;
31using Record = llvm::MachO::Record;
32using EncodeKind = llvm::MachO::EncodeKind;
33using GlobalRecord = llvm::MachO::GlobalRecord;
34using ObjCContainerRecord = llvm::MachO::ObjCContainerRecord;
35using ObjCInterfaceRecord = llvm::MachO::ObjCInterfaceRecord;
36using ObjCCategoryRecord = llvm::MachO::ObjCCategoryRecord;
37using ObjCIVarRecord = llvm::MachO::ObjCIVarRecord;
38using ObjCIFSymbolKind = llvm::MachO::ObjCIFSymbolKind;
39using Records = llvm::MachO::Records;
40using RecordLoc = llvm::MachO::RecordLoc;
41using RecordsSlice = llvm::MachO::RecordsSlice;
42using BinaryAttrs = llvm::MachO::RecordsSlice::BinaryAttrs;
43using SymbolSet = llvm::MachO::SymbolSet;
44using SimpleSymbol = llvm::MachO::SimpleSymbol;
45using FileType = llvm::MachO::FileType;
46using PackedVersion = llvm::MachO::PackedVersion;
47using PathSeq = llvm::MachO::PathSeq;
48using Target = llvm::MachO::Target;
49using TargetList = llvm::MachO::TargetList;
50
51#endif // LLVM_CLANG_INSTALLAPI_MACHO_H
52

source code of clang/include/clang/InstallAPI/MachO.h