Zachary Turner | 041e9f2 | 2016-06-03 19:28:33 +0000 | [diff] [blame] | 1 | //===- OutputStyle.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_OUTPUTSTYLE_H |
| 11 | #define LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H |
| 12 | |
| 13 | #include "llvm/Support/Error.h" |
| 14 | |
| 15 | namespace llvm { |
| 16 | namespace pdb { |
| 17 | class PDBFile; |
| 18 | |
| 19 | class OutputStyle { |
| 20 | public: |
| 21 | virtual ~OutputStyle() {} |
Zachary Turner | 61e0e27 | 2016-06-06 20:37:05 +0000 | [diff] [blame] | 22 | |
Zachary Turner | 3a4681d | 2016-06-30 17:42:48 +0000 | [diff] [blame] | 23 | virtual Error dump() = 0; |
Zachary Turner | 041e9f2 | 2016-06-03 19:28:33 +0000 | [diff] [blame] | 24 | }; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | #endif |