Juergen Ributzka | 32cb594 | 2019-03-22 22:46:52 +0000 | [diff] [blame] | 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. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_TEXTAPI_MACHO_CONTEXT_H |
| 14 | #define LLVM_TEXTAPI_MACHO_CONTEXT_H |
| 15 | |
Juergen Ributzka | 32cb594 | 2019-03-22 22:46:52 +0000 | [diff] [blame] | 16 | #include <string> |
| 17 | |
| 18 | namespace llvm { |
| 19 | namespace MachO { |
| 20 | |
| 21 | enum FileType : unsigned; |
| 22 | |
| 23 | struct TextAPIContext { |
| 24 | std::string ErrorMessage; |
| 25 | std::string Path; |
| 26 | FileType FileKind; |
| 27 | }; |
| 28 | |
| 29 | } // end namespace MachO. |
| 30 | } // end namespace llvm. |
| 31 | |
| 32 | #endif // LLVM_TEXTAPI_MACHO_CONTEXT_H |