Path: blob/main/contrib/llvm-project/llvm/lib/TextAPI/TextAPIContext.h
35262 views
//===- TextAPIContext.h ---------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// Defines the YAML Context for the TextAPI Reader/Writer.9//10//===----------------------------------------------------------------------===//1112#ifndef LLVM_TEXTAPI_MACHO_CONTEXT_H13#define LLVM_TEXTAPI_MACHO_CONTEXT_H1415#include "llvm/TextAPI/FileTypes.h"16#include <string>1718namespace llvm {19namespace MachO {2021struct TextAPIContext {22std::string ErrorMessage;23std::string Path;24FileType FileKind;25};2627} // end namespace MachO.28} // end namespace llvm.2930#endif // LLVM_TEXTAPI_MACHO_CONTEXT_H313233