PrettyEnumDumper.h 746 B

123456789101112131415161718192021222324252627282930
  1. //===- PrettyEnumDumper.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_PRETTYENUMDUMPER_H
  9. #define LLVM_TOOLS_LLVMPDBDUMP_PRETTYENUMDUMPER_H
  10. #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
  11. namespace llvm {
  12. namespace pdb {
  13. class LinePrinter;
  14. class EnumDumper : public PDBSymDumper {
  15. public:
  16. EnumDumper(LinePrinter &P);
  17. void start(const PDBSymbolTypeEnum &Symbol);
  18. private:
  19. LinePrinter &Printer;
  20. };
  21. }
  22. }
  23. #endif