Zachary Turner | 9e7dda3 | 2017-04-12 23:18:51 +0000 | [diff] [blame^] | 1 | //===- PrettyClassLayoutGraphicalDumper.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 | #include "PrettyClassLayoutGraphicalDumper.h" |
| 11 | |
| 12 | using namespace llvm; |
| 13 | using namespace llvm::pdb; |
| 14 | |
| 15 | PrettyClassLayoutGraphicalDumper::PrettyClassLayoutGraphicalDumper( |
| 16 | LinePrinter &P) |
| 17 | : PDBSymDumper(true), Printer(P) {} |
| 18 | |
| 19 | bool PrettyClassLayoutGraphicalDumper::start(const ClassLayout &Layout) { |
| 20 | return false; |
| 21 | } |
| 22 | |
| 23 | void PrettyClassLayoutGraphicalDumper::dump( |
| 24 | const PDBSymbolTypeBaseClass &Symbol) {} |
| 25 | |
| 26 | void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolData &Symbol) {} |
| 27 | |
| 28 | void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeEnum &Symbol) {} |
| 29 | |
| 30 | void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolFunc &Symbol) {} |
| 31 | |
| 32 | void PrettyClassLayoutGraphicalDumper::dump( |
| 33 | const PDBSymbolTypeTypedef &Symbol) {} |
| 34 | |
| 35 | void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeUDT &Symbol) {} |
| 36 | |
| 37 | void PrettyClassLayoutGraphicalDumper::dump(const PDBSymbolTypeVTable &Symbol) { |
| 38 | } |