[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / lib / TextAPI / TextAPIContext.h
blob217d1f5400ee82ea64d03266b80fe25c6719a0d6
1 //===- TextAPIContext.h ---------------------------------------------------===//
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 // Defines the YAML Context for the TextAPI Reader/Writer.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_TEXTAPI_MACHO_CONTEXT_H
14 #define LLVM_TEXTAPI_MACHO_CONTEXT_H
16 #include <string>
18 namespace llvm {
19 namespace MachO {
21 enum FileType : unsigned;
23 struct TextAPIContext {
24 std::string ErrorMessage;
25 std::string Path;
26 FileType FileKind;
29 } // end namespace MachO.
30 } // end namespace llvm.
32 #endif // LLVM_TEXTAPI_MACHO_CONTEXT_H