OutputStyle.h 643 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. #include "llvm/Support/Error.h"
  11. namespace llvm {
  12. namespace pdb {
  13. class PDBFile;
  14. class OutputStyle {
  15. public:
  16. virtual ~OutputStyle() {}
  17. virtual Error dump() = 0;
  18. };
  19. }
  20. }
  21. #endif