[llvm-objcopy] [COFF] Fix warnings abuilt missing field initialization. NFC.
[llvm-complete.git] / tools / llvm-pdbutil / PrettyEnumDumper.h
blobc6e65a6d1772a126d0754294189d507abdb2ba4a
1 //===- PrettyEnumDumper.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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYENUMDUMPER_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_PRETTYENUMDUMPER_H
13 #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
15 namespace llvm {
16 namespace pdb {
18 class LinePrinter;
20 class EnumDumper : public PDBSymDumper {
21 public:
22 EnumDumper(LinePrinter &P);
24 void start(const PDBSymbolTypeEnum &Symbol);
26 private:
27 LinePrinter &Printer;
31 #endif