Zachary Turner | eb6ab04 | 2017-01-11 00:35:43 +0000 | [diff] [blame] | 1 | //===- PrettyEnumDumper.h ---------------------------------------*- C++ -*-===// |
Zachary Turner | b9c28bc | 2015-03-04 06:09:53 +0000 | [diff] [blame] | 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 | |
Zachary Turner | eb6ab04 | 2017-01-11 00:35:43 +0000 | [diff] [blame] | 10 | #ifndef LLVM_TOOLS_LLVMPDBDUMP_PRETTYENUMDUMPER_H |
| 11 | #define LLVM_TOOLS_LLVMPDBDUMP_PRETTYENUMDUMPER_H |
Zachary Turner | b9c28bc | 2015-03-04 06:09:53 +0000 | [diff] [blame] | 12 | |
| 13 | #include "llvm/DebugInfo/PDB/PDBSymDumper.h" |
| 14 | |
| 15 | namespace llvm { |
Zachary Turner | c95df94 | 2016-05-04 20:32:13 +0000 | [diff] [blame] | 16 | namespace pdb { |
Zachary Turner | b9c28bc | 2015-03-04 06:09:53 +0000 | [diff] [blame] | 17 | |
| 18 | class LinePrinter; |
| 19 | |
| 20 | class EnumDumper : public PDBSymDumper { |
| 21 | public: |
| 22 | EnumDumper(LinePrinter &P); |
| 23 | |
| 24 | void start(const PDBSymbolTypeEnum &Symbol); |
| 25 | |
| 26 | private: |
| 27 | LinePrinter &Printer; |
| 28 | }; |
| 29 | } |
Zachary Turner | c95df94 | 2016-05-04 20:32:13 +0000 | [diff] [blame] | 30 | } |
Zachary Turner | b9c28bc | 2015-03-04 06:09:53 +0000 | [diff] [blame] | 31 | #endif |