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: ~OutputStyle()21 virtual ~OutputStyle() {} 22 23 virtual Error dump() = 0; 24 }; 25 } 26 } 27 28 #endif 29