[llvm-objcopy] [COFF] Fix warnings abuilt missing field initialization. NFC.
[llvm-complete.git] / tools / llvm-pdbutil / OutputStyle.h
blobdfefc25a215e88f08d1302fd84559c3aa57eec32
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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
11 #define LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
13 #include "llvm/Support/Error.h"
15 namespace llvm {
16 namespace pdb {
17 class PDBFile;
19 class OutputStyle {
20 public:
21 virtual ~OutputStyle() {}
23 virtual Error dump() = 0;
28 #endif