TextAPIWriter.h 779 B

12345678910111213141516171819202122232425262728293031
  1. //===--- TextAPIWriter.h - Text API Writer ----------------------*- C++ -*-===//
  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. #ifndef LLVM_TEXTAPI_MACHO_TEXTAPIWRITER_H
  9. #define LLVM_TEXTAPI_MACHO_TEXTAPIWRITER_H
  10. namespace llvm {
  11. class Error;
  12. class raw_ostream;
  13. namespace MachO {
  14. class InterfaceFile;
  15. class TextAPIWriter {
  16. public:
  17. TextAPIWriter() = delete;
  18. static Error writeToStream(raw_ostream &os, const InterfaceFile &);
  19. };
  20. } // end namespace MachO.
  21. } // end namespace llvm.
  22. #endif // LLVM_TEXTAPI_MACHO_TEXTAPIWRITER_H