ExternalSymbolDumper.h 784 B

1234567891011121314151617181920212223242526272829303132
  1. //===- ExternalSymbolDumper.h --------------------------------- *- C++ --*-===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef LLVM_TOOLS_LLVMPDBDUMP_EXTERNALSYMBOLDUMPER_H
  10. #define LLVM_TOOLS_LLVMPDBDUMP_EXTERNALSYMBOLDUMPER_H
  11. #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
  12. namespace llvm {
  13. class LinePrinter;
  14. class ExternalSymbolDumper : public PDBSymDumper {
  15. public:
  16. ExternalSymbolDumper(LinePrinter &P);
  17. void start(const PDBSymbolExe &Symbol);
  18. void dump(const PDBSymbolPublicSymbol &Symbol) override;
  19. private:
  20. LinePrinter &Printer;
  21. };
  22. }
  23. #endif