1 //===- OutputStyle.h ------------------------------------------ *- C++ --*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
13 #include "llvm/Support/Error.h"
21 virtual ~OutputStyle() {}
23 virtual Error
dump() = 0;