OutputStyle.h 610 B

123456789101112131415161718192021222324252627
  1. //===- OutputStyle.h ------------------------------------------ *- 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_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
  9. #define LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
  10. namespace llvm {
  11. class Error;
  12. namespace pdb {
  13. class OutputStyle {
  14. public:
  15. virtual ~OutputStyle() {}
  16. virtual Error dump() = 0;
  17. };
  18. }
  19. }
  20. #endif