diff options
Diffstat (limited to 'llvm/include/llvm/TextAPI/MachO/TextAPIReader.h')
-rw-r--r-- | llvm/include/llvm/TextAPI/MachO/TextAPIReader.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h b/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h deleted file mode 100644 index ab30799e761..00000000000 --- a/llvm/include/llvm/TextAPI/MachO/TextAPIReader.h +++ /dev/null @@ -1,35 +0,0 @@ -//===--- TextAPIReader.h - Text API Reader ----------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_TEXTAPI_MACHO_READER_H -#define LLVM_TEXTAPI_MACHO_READER_H - -#include "llvm/Support/Error.h" -#include "llvm/Support/MemoryBuffer.h" - -namespace llvm { -namespace MachO { - -class InterfaceFile; - -class TextAPIReader { -public: - static Expected<std::unique_ptr<InterfaceFile>> - get(std::unique_ptr<MemoryBuffer> InputBuffer); - - static Expected<std::unique_ptr<InterfaceFile>> - getUnmanaged(llvm::MemoryBuffer *InputBuffer); - - TextAPIReader() = delete; -}; - -} // end namespace MachO. -} // end namespace llvm. - -#endif // LLVM_TEXTAPI_MACHO_READER_H |