2016-06-03 21:28:33 +02:00
|
|
|
//===- OutputStyle.h ------------------------------------------ *- C++ --*-===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-06-03 21:28:33 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
|
|
|
|
#define LLVM_TOOLS_LLVMPDBDUMP_OUTPUTSTYLE_H
|
|
|
|
|
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
namespace pdb {
|
|
|
|
class PDBFile;
|
|
|
|
|
|
|
|
class OutputStyle {
|
|
|
|
public:
|
|
|
|
virtual ~OutputStyle() {}
|
2016-06-06 22:37:05 +02:00
|
|
|
|
2016-06-30 19:42:48 +02:00
|
|
|
virtual Error dump() = 0;
|
2016-06-03 21:28:33 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|