Home | History | Annotate | Download | only in llvm-pdbdump
      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 
     10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_EXTERNALSYMBOLDUMPER_H
     11 #define LLVM_TOOLS_LLVMPDBDUMP_EXTERNALSYMBOLDUMPER_H
     12 
     13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
     14 
     15 namespace llvm {
     16 namespace pdb {
     17 
     18 class LinePrinter;
     19 
     20 class ExternalSymbolDumper : public PDBSymDumper {
     21 public:
     22   ExternalSymbolDumper(LinePrinter &P);
     23 
     24   void start(const PDBSymbolExe &Symbol);
     25 
     26   void dump(const PDBSymbolPublicSymbol &Symbol) override;
     27 
     28 private:
     29   LinePrinter &Printer;
     30 };
     31 }
     32 }
     33 
     34 #endif
     35