Path: blob/main/contrib/llvm-project/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
35260 views
//===- PrettyExternalSymbolDumper.h --------------------------- *- C++ --*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYEXTERNALSYMBOLDUMPER_H9#define LLVM_TOOLS_LLVMPDBDUMP_PRETTYEXTERNALSYMBOLDUMPER_H1011#include "llvm/DebugInfo/PDB/PDBSymDumper.h"1213namespace llvm {14namespace pdb {1516class LinePrinter;1718class ExternalSymbolDumper : public PDBSymDumper {19public:20ExternalSymbolDumper(LinePrinter &P);2122void start(const PDBSymbolExe &Symbol);2324void dump(const PDBSymbolPublicSymbol &Symbol) override;2526private:27LinePrinter &Printer;28};29}30}3132#endif333435