brintos

brintos / llvm-project-archived public Read only

0
0
Text · 870 B · 3151db7 Raw
32 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8//9// Defines the YAML Context for the TextAPI Reader/Writer.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_TEXTAPI_MACHO_CONTEXT_H14#define LLVM_TEXTAPI_MACHO_CONTEXT_H15 16#include "llvm/TextAPI/FileTypes.h"17#include <string>18 19namespace llvm {20namespace MachO {21 22struct TextAPIContext {23  std::string ErrorMessage;24  std::string Path;25  FileType FileKind;26};27 28} // end namespace MachO.29} // end namespace llvm.30 31#endif // LLVM_TEXTAPI_MACHO_CONTEXT_H32